
Originally Posted by
dazman1360
The answer was No!
That solves that problem then!

Originally Posted by
dazman1360
With that change I now get this error:
Microsoft VBScript compilation error '800a0408'
Invalid character
/codespark/FormMail.asp, line 304
for i = 1 to Len(domain?
-----------------------^
Line 304 reads:
for i = 1 to Len(domain?
charCode = Asc(Mid(domain, i, 1))
!
The correct syntax for 'Len' (in this case) should be...
Code:
Len(strName)
Or
Len("This string contains 35 characters!")
Bookmarks