Validation control Question....

  • Thread starter Thread starter Filippo
  • Start date Start date
F

Filippo

Ciao!

I've been developing my application for a while and after testing under
Mozilla, I've noticed that validation controls are not rendered at all!

Any ideas or/and suggestions?

thanks,

Filippo
 
Please make those controls have server-side validation.
Or write custom validation for them. The validation controls work well on IE
but not on Mozilla

Regards
Mohamed El Ashmawy
MEA Developer Support Center
ITWorx on behalf of Microsoft EMEA GTSC
 
If you use built-in validators, they have server-side support
(browser-independent) by default, but you need to check Page.IsValid or
optionally validator.IsValid before letting critical, validation-dependent
code to run.

--
Teemu Keiski
MCP, Microsoft MVP (ASP.NET), AspInsiders member
ASP.NET Forum Moderator, AspAlliance Columnist
http://blogs.aspadvice.com/joteke

Ciao!

I've been developing my application for a while and after testing under
Mozilla, I've noticed that validation controls are not rendered at all!

Any ideas or/and suggestions?

thanks,

Filippo
 
Hi Filippo,

You have found one of many limitations of the ASP.NET validators. I rewrote
the entire validation system in my product "Professional Validation And
More" (http://www.peterblum.com/vam/home.aspx). It supports client-side
validation on IE, IE/Mac, Netscape/Mozilla, Opera 7, and Safari. There are
extensive enhancements that greatly reduce the amount of code you write for
validation.

--- Peter Blum
www.PeterBlum.com
Email: (e-mail address removed)
Creator of "Professional Validation And More" at
http://www.peterblum.com/vam/home.aspx
 
Back
Top