Server-side validation and mozilla

  • Thread starter Thread starter Frédéric Mayot
  • Start date Start date
F

Frédéric Mayot

Hi,
I have some VS.NET 2003 validators in a page. When I use IE, OK. With
Mozilla, as it's supposed to behave, the validation doesn't occur on the
client-side. The problem is the server-side validation doesn't work
(Page.IsValid is true in the validation button event handler) ?
Fred
 
Fred,

You need to call the Page.Validate method before using Page.IsValid. See
the documentation for the IsValid method for details.

HTH,
Nicole
 
Back
Top