Dynamic Validation Controls in Netscape

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Mike George

    Dynamic Validation Controls in Netscape

    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

    #2
    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.c om/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]

    Comment

    Working...