Connecting Tech Pros Worldwide Forums | Help | Site Map

Dynamic Validation Controls in Netscape

Mike George
Guest
 
Posts: n/a
#1: Nov 17 '05
I am having a problem with dynamic validation controls.
I have some code that uses an XSLT to transform an
XMLDocument into HTML which creates ASP.NET validation
controls dynamically (v 1.1).

The controls are being successfully created, because
validation works correctly in IE. However, validation
does not work in Netscape. Additionally, if I check
Page.IsValid in the submit button's onclick event, I
get "true", even though the page isn't valid.

It appears that since the validation controls are
dynamically created at run time, they will not exist upon
PostBack. How can I get this validation to work in
Netscape?

Netscape
Guest
 
Posts: n/a
#2: Nov 17 '05

re: Dynamic Validation Controls in Netscape



What's netscape??

Anyway, here is my advice: pop up a message box telling
users to get a real browser, and then do

Server.Redirect
("http://www.microsoft.com/windows/ie/default.asp");


HTH


[color=blue]
>-----Original Message-----
>I am having a problem with dynamic validation controls.
>I have some code that uses an XSLT to transform an
>XMLDocument into HTML which creates ASP.NET validation
>controls dynamically (v 1.1).
>
>The controls are being successfully created, because
>validation works correctly in IE. However, validation
>does not work in Netscape. Additionally, if I check
>Page.IsValid in the submit button's onclick event, I
>get "true", even though the page isn't valid.
>
>It appears that since the validation controls are
>dynamically created at run time, they will not exist upon
>PostBack. How can I get this validation to work in
>Netscape?
>.
>[/color]
Closed Thread