Home All Groups Group Topic Archive Search About
Author
20 Jan 2006 4:39 AM
rajarameshvarma
CustomValidator in my aspx page is not working in FireFox.It is working
fine with IE. My client validation function is in JavaScript. Even the
CV is not calling the client function also. Can anybody help me in this
regard.

Thank in advance,
Varma

Author
20 Jan 2006 7:29 PM
Peter Blum
Two possible issues:

1. If you are using ASP.NET 1.x, client-side validation is not supported on
any browser that doesn't implement DHTML (document.all specifically). See
http://aspnet.4guysfromrolla.com/articles/051204-1.aspx

2. If you use document.all[] to locate a control, it is not supported on W3C
DOM compatible browsers, like FireFox and Mozilla. Use
document.getElementById().

--- Peter Blum
www.PeterBlum.com
Email: PLB***@PeterBlum.com
Creator of "Professional Validation And More" at
http://www.peterblum.com/vam/home.aspx

<rajarameshva***@gmail.com> wrote in message
Show quoteHide quote
news:1137731972.426046.113370@g14g2000cwa.googlegroups.com...
> CustomValidator in my aspx page is not working in FireFox.It is working
> fine with IE. My client validation function is in JavaScript. Even the
> CV is not calling the client function also. Can anybody help me in this
> regard.
>
> Thank in advance,
> Varma
>