I am sharing a tips on "ASP.Net Validators within Sharepoint "
Most of the times we have requirements of adding different client side validations on the web pages and the easiest way to achieve this in ASP.Net is to use the existing set of validator controls.
In SharePoint when we design custom webparts which takes some data as input, we might need to add some client side validations using ASP.Net validator controls, but there are a few things that always need to be taken care of while using ASP.Net validator controls within SharePoint custom webparts.
1. Within a webpart we might have more than one control triggering server side postbacks. In this case the validator controls will validate with each and every postback, but the actual need might be to only validate the form with a single postback event, let's say through the "SUBMIT" button. To avoid this, one need to set the CausesValidation property to false for all those controls causing server side postabacks where you do not want the form to get validated.
e.g. CausesValidation="false"
2. A SharePoint page can generally contain multiple webparts. So, if we have an ASP.Net validator control integrated within one webpart it's always going to create issues with the postback events from within other webparts present on the same page. To overcome this issue and restrict the validation to a specific webpart, ValidationGroup property can be used with a unique name within a specific webpart. All the controls (validator controls and controls to be validated) coming under a common validation logic should have the same ValidationGroup name.
e.g. ValidationGroup="UniqueGroupName"
Thanks,
Bijayani
http://www.mindfiresolutions.com/sharepoint-development.htm
Sudhak, if this helps please login to Mark As Answer. | Alert Moderator