Previously i had posted an article on www.codeporject.com that is specifically for asp.net 1.0 and 1.1 when validation controls are bound the to validate whole of the page.This article discuss some client side and server side tricks to partially validating a page.In Asp.net 2.0 and later Microsoft provided validation groups that provide same parial validation functionality that i have tried to achieve in ASP.net 1.0 and 1.1. You can have a look at that post partial Page Validation.
November 20, 2007
November 12, 2007
Date Control Better than DateTimePicker
In a database application Date data type handling is a bit difficult as compared to other data types and getting input by keyboard is required some extra efforts.Common solution to this problem is the DateTimePicker control provided by Microsoft.Unfortunately DateTimePicker is not best suited for fast data entry via keyboard that is always required in a database driven applications. I have got several complains from end users that he don’t want to use mouse for date selection or when entering date in DateTimePicker via keyboard require extra keys has to be pressed from moving cursor from one day part to next and so on. This is the motivation behind the development of a new DateTimePicker, which will enable users to enter data fast and in alternate ways either by keyboard or by mouse you can find my article and source for Date Control at www.codeproject.com.