Tips & Tricks for ASP.NET - C#

Google site Search
Custom Validation Serverside Code

public void abcd(object sender, ServerValidateEventArgs args){

//true condition

args.IsValid = true;

//else false
args.IsValid = false;

}


<asp:CustomValidator ID="CustomValidator1"
runat="server"
OnServerValidate="abcd"
ControlToValidate="fuCV"
Display="Dynamic"
ErrorMessage="error message">*</asp:CustomValidator>



Arvixe offers ASP.net hosting that's good for testing plugins. Here is a good arvixe review if you want to know more.

Comments
Write Comments
Name  
Email    
Comments  

Other Titles