Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Compilation error - any help, please?!

Status
Not open for further replies.

LaPluma

Programmer
Feb 3, 2002
139
0
0
DE
Hello

I would be grateful for some advice on what the following error means. It happens when I click on the submit button of a form on an HTML page which is linked to a /cdonts.asp page.

The relevant page is at:


Many thanks in anticipation



Microsoft VBScript compilation error '800a0411'

Name redefined

/cdonts.asp, line 45

Dim clienturl, clientname, clientorg
----^
 
This means that you DIM the same variable more than once! This is not a bug - it's an undocumented feature...
;-)
 
LaPluma
One or more of the three variables "clienturl, clientname, clientorg " have been redefined more than once.


 
It's the ClientUrl - do a search on it, and you'll find it at least twice in the corresponding page - delete all but the first! This is not a bug - it's an undocumented feature...
;-)
 
Apart from that, I get an:

'document.forms.mailinglist.elements' is null or not an object

when requesting your page... This is not a bug - it's an undocumented feature...
;-)
 
Hello Jonax and Flying Frog

Many thanks for your help!
It's back to the drawing board!

Best wishes
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top