ASP:RequiredFieldValidator control is not working on Netscape 7.

  • Thread starter Thread starter Rob
  • Start date Start date
R

Rob

ASP:RequiredFieldValidator is not working on Netscape 7.
Any one has idea how to fix this problem?
 
Hi

Check After changing Target Schema to Netscape Navigator
4.0 in Page Document Properties.

To Get Document Properties right click on any aspx page.

HTH
Ravikanth
 
Hi

Check After changing Target Schema to Netscape Navigator
4.0 in Page Document Properties.

To Get Document Properties right click on any aspx page.

HTH
Ravikanth
 
RaviKanth, I tried it but no luck.
-----Original Message-----
Hi

Check After changing Target Schema to Netscape Navigator
4.0 in Page Document Properties.

To Get Document Properties right click on any aspx page.

HTH
Ravikanth

.
 
client support of asp.net validation is IE only. with any other browser, it
is server side only. also notice that if the browser is not IE, style widths
and heights are not emitted. the ms webform controls are really IE only.

note: the client validation code (WebUIValidation.js) uses the IE dom, not
the W3C (html 4.0) dom, so it only works with IE. you could edit this code
to be browser neutral, then lie about the browser level to create the
validation calls.

-- bruce (sqlwork.com)
 
Back
Top