Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Server Side Validation Not Working

Status
Not open for further replies.

jtgurkin

Technical User
Sep 16, 2002
47
US
I have created a form using VS.NET 2003 and included sever ASP.NET control validators. It works fine on IE, but not on Netscape. I did a little digging as well as writing a custom validator on the server side. It appears that the validation on the server side is not happening. As long as .NET detects IE it includes the JavaScript validation, but on Netscape the JS validation is left out and not validation is processed. This is happening on two seperate WinXPPro machines with .NET Framework 1.1 installed. Thanks in advance, JG.
 
the server side validation has to be done by you. the only thing that .NET does is to include javascript for client side validation to save round-trips. for the server side you need to implement your own logic.
 
If I use the required field validators, it is supposed to automatically process at least server side as well as client side. Also I had written a server side validation Subroutine and used the CustomValidator it didn't work either.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top