Saturday, March 10, 2012
validation control not working after OnClientClick added to button click event
actuallly i have to validate checkbox terms and conditions before submitting the form and to validate forms there is already server side validation controls are used. As there is validation controls not work on checkbox thats why i have written a javascript function to validate that checkbox but when i added the OnClientClick on that button , i checked that term and condition working perfectly but validation controls are not validating the forms. if i remove the onClientClick its works perfectly . finally with help of http://stackoverflow.com . i found the solution i have to explicitly call the validate function of server side validation controls and now my button html look like this :
OnClientClick="Page_ClientValidate(); IsChecked();" />
Subscribe to:
Post Comments (Atom)
ASP.NET Core
Certainly! Here are 10 advanced .NET Core interview questions covering various topics: 1. **ASP.NET Core Middleware Pipeline**: Explain the...
-
The error message you encountered ("DeleteService FAILED 1072: The specified service has been marked for deletion") indicates tha...
-
replace html of a div using jquery this is simple . just use .html() method of jquery to set new html for a div . $ ( "#divID&q...
-
declare @ProductIds nvarchar(50)='18,19' SELECT * FROM products Where (',' + @ProductIds +',' LIKE '%,' ...
THANK YOU! Adding Page_ClientValidate(); works!
ReplyDelete