-
If you are wondering why you may want to consider using the AJAX client library (forgetting about the AJAX extensions library server portion), there are multiple reasons to choose Microsoft's implementation. Right now, on the internet, we are seeing...
-
I was having a development requirement in which i have to implement CheckBoxes inside GridView. Scenario is like, There is one TemplateColumn in GridView which is used to Select any Row within GridView. So, There will be CheckBox inside ItemTemplate of...
-
I was having few hours of work-a-round when I was trying to Set-up/Deploy the DotNetNuke Environment at my local pc. I restore the DB Backup of DNN, copied the source at my local pc drive and configured the Virtual Directory for the application. I also...
-
I am delighted to find out that I have been awarded with 2008 Microsoft® MVP Award. This is the email I received: Subject: [MVP] Congratulations! You have received the Microsoft MVP Award Dear Kaushal Parik, Congratulations! We are pleased to present...
-
I just wanted to post a note that I was up for re-evaulation for the MVP award (as it is a yearly thing), and I was renewed for the July 2008-2009 time period. I am really excited to be renominated, as I think it's a prestigious award, and I'm...
-
This is a little snippet for calculate hash of a file. Some code is from internet . It can open a file that is actually used by an other process. public string CalculateHash( string file) { try { MD5 obj = MD5 .Create(); byte [] bytes; using ( FileStream...
-
This is an useful link...I am not a great designer with web graphic :-) Bye Antonio
-
I came across one good article on Dynamic SQL (SQL Server) by Erland Sommarskog, SQL Server MVP. The Article describes Intro to Dynamic SQL, SQL Injection, Dynamic Queries and SPs, Good Coding Practice and Tips for Dynamic SQL, and the common cases where...
-
I had to find some work-a-round for a scrollable repeater. The way I want it to be is to have fix headers with able to vertically scrollable. I found lots of example dealing for this solution with CSS and JavaScript. Luckily, I found one which works in...
-
If you are one of the users that is using our AjaxDataControls, then we need your help. We are planing to work on the AjaxDataControls to fix current bugs and to add new features - this may be released as a SP or as a new release. We are not sure about...
-
I have not done much sophisticated SQL server programming, generally I profer ad-hoc queries, select-insert-update-delete, and leave other calculations in .net programming. (When I do do heavy-lifting database programming, I use foxpro. I like quick and...
-
Here I got the exact word and its meaning for the work what I or all degelopers use to do after completion of each module/integration. Smoke testing / build verification testing is done by developers before the build is released or by testers before accepting...
-
During these days I am developing a little project with LINQ To SQL for understand this new tecnology. It is a little web application for configure newsletters. Here I report some examples with LINQ To SQL: Example using JOIN and Anonimous types: var...
-
This is a followup small how-to on my previous post: AjaxDataControls (ADC) FAQ - How to get started with the AjaxDataControls with Visual Studio 2005? The basic idea is the same, however to make it easy to get started with VS2008 and ADC, I will repeat...
-
Multiple Active Result Sets (MARS) is a feature in ADO.NET 2.0. It allows execution of multiple batches against Database on a single connection. Preeviously, only one batch could be executed at a time against a single connection. But, execution of multiple...