asp page error

  • Thread starter Thread starter BB
  • Start date Start date
B

BB

When going to my web page, on the web I got the following
error, ?? and can't seem to get it straightened out. Page
(site) was built with FrontPage 2000 and the page refered
to is an *.asp page within that site. Does anyone have any
information or suggestions.

Microsoft VBScript compilation error '800a0411'
Name redefined
/functions.asp, line 10
Dim strPayPalID
----^

***********************************************************
clicking on the browses "view" then "source" the following
comes up
***********************************************************
<font face="Arial" size=2>
<p>Microsoft VBScript compilation </font> <font
face="Arial" size=2>error '800a0411'</font>
<p>
<font face="Arial" size=2>Name redefined</font>
<p>
<font face="Arial" size=2>/functions.asp</font><font
face="Arial" size=2>, line 10</font>
<pre>Dim strPayPalID
----^</pre>
 
You have two or more

Dim strPayPalID

in your page, you can only have one.
--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================
 
Hi,
this is caused by DIMing the same variable twice, eg
<%
Dim strPayPalID
Dim strPayPalID
' error you're getting !
%>
check your code for something similar to the above.
 
Back
Top