ValidationSummary, ShowMessageBox and Netscape

  • Thread starter Thread starter Joe
  • Start date Start date
J

Joe

Since netscape doesn't support client side validation, can anyone suggest a
way to display the message using an alert? Due to the layout of the page, we
can't have validation labels above, next to or below the controls missing
their value or having invalid format.
I haven't found a property of the ValidationSummary control to read the
error message that would normally be displayed in a message box.

Thanks,
Joe
 
Netscape does support client side Validation however Microsoft chose to
create implementations of Client Side Validation that favored IE.
If you want you can write your own client side scripts that check the
values.
 
you could try something like

if not page.isvalid then
page.registerstartupscript("onLoad","<script>alert('page is not
valid');</script>")
end if
 
Back
Top