Dynamic Validation Controls in Netscape

Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default 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?
    Mike George Guest

  2. Similar Questions and Discussions

    1. Editable datagrid and dynamic validation controls
      On a page we are developing, there are multiple Panels with datagrids in each one. Based on the functionality you are performing, one panel will...
    2. Validation Controls
      Hello, I have placed many validation controls on an aspx webform and a user control that allows the visitor to enter a username and password and...
    3. ASP.Net Validation controls not working in netscape
      Hi all, The Asp.net validation controls are skipping the validations in netscape.Please suggest a solution for this. Thanks Srinivasa...
    4. Netscape required field validation problems
      I have an interesting problem when I run the following code in Netscape (7.02) vs. IE. This page works great in IE and all my controls bring up the...
    5. web server controls not displaying at all on netscape 4.7
      Netscape cannot understand utf-8 encoding which is the default for how pages are sent with .NET, you can change this in the web.config, by replace...
  3. #2

    Default 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


    >-----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?
    >.
    >
    Netscape Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139