Ask a Question related to ASP.NET General, Design and Development.
-
Marina #1
Re: Error Expected ';' in .Net Framework
This is a javascript error.
If you had looked at the source, you would have seen, that your form's name
is _ctl1:Form.
..NET creates a __doPostBack function on pages with certain controls, which
is just javascript to submit the form. It uses the name of the form - which
in this case is __ctl1:Form. The line causing the problem is:
theform = document._ctl1:Form1;
This, however, is not a valid javascript statement, since the ':' character
is not valid in an identifier, and thus this line fails.
I would recommend you find out why your form is being named with a colon in
it, since this is the cause of your problem.
In general, I would recommend you investigate javascript errors by looking
at the rendered HTML.
"dotnetprogrammer" <tim_60173@yahoo.com> wrote in message
news:e856daff.0307210809.3a4b51aa@posting.google.c om...> Hi;
>
> Has anyone ran across this error, not getting the error on Win2003
> test server, but am getting on Win2000 with .net framework 1.1
> installed
>
> To see the error, please visit [url]www.nextapparel.com[/url] --> test server is
> dev.nextapparel.com which is fine
Marina Guest
-
Error object expected
hey folks! I'm getting the usual NOOB error object expected. I'm creating a simple box and applying a texture to it: The specific line i get the... -
object expected error
Hi I am having several problems that might be a bug or bad codeing but I cant tell as the error only happens immediatly after I save my working... -
VB error Expected 'Wend'
Hi I've been trying to hand code my pages, after failing in a WSYWYG editor and giving up. I'm almost done with the page checking, it's just i'm... -
IIS ASP Object Expected Error
John wrote: Should be "Err.Clear". The Number propery is read-only IIRC. -
Too few parameters. Expected error
"Ken Schaefer" <kenREMOVE@THISadOpenStatic.com> wrote in message news:<OEuOwifODHA.2224@TK2MSFTNGP10.phx.gbl>... Sorry still having problems with...



Reply With Quote

