Hi Guys Please help How to use CustomValidator in ASP.NET? with sample code. Thanks
CustomValidator in ASP.NET Anonymous User 2659 18 Oct 2010 Hi GuysPlease helpHow to use CustomValidator in ASP.NET? with sample code.Thanks
we create function to particular control. we give the particular validator condition
for example
<script> function check() { //give the condition } </script><asp:TextBox id="txtBox"></asp:TextBox> <asp:CustomValdator TargetControlID="txtBox" onClick="check();"></asp:CustomValidator>