|
|
|||||||||
|
|||||||||
|
|||||||||
| |
||
| ||||||||||||||||||||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
Dear All,
Your help is greatly appreciated. My Website got the below error message. As I am a starter, I don;t know why this error is occurred. When I checked on the coding, there is nothing wrong with line 325 and there is no coding command in line 325. Please advise how to check and solve it out. Many Thanks in advance accom365 **************************************** Microsoft VBScript compilation error '800a03ea' Syntax error /interconfirmbooking.asp, line 325 Function GenerateAdmin() **************************************** below is the scripts from line 322 till line 337 Response.redirect "reconfirmpaxdetail.asp?BookingRef=" & BookingRef & "&PriceType=" & StrPriceType Function GenerateAdmin() Dim str, i, value Randomize for i = 1 to 3 value = Int(122*Rnd) + 1 if (value >= 65 and value <=90) or (value >= 97 and value <= 122) then str = str & chr(value) else str = str & value end if |
|
#2
|
||||
|
||||
|
Hi and welcome to the forums
I think you should have these 2 lines as 1 line only Code:
Response.redirect "reconfirmpaxdetail.asp?BookingRef=" & BookingRef & "&PriceType=" & StrPriceType Code:
Response.redirect "reconfirmpaxdetail.asp?BookingRef=" & BookingRef & "&PriceType=" & StrPriceType |
|
#3
|
||||
|
||||
|
you can break lines using underscore:
Code:
Response.redirect "reconfirmpaxdetail.asp?BookingRef=" &_ BookingRef & "&PriceType=" & StrPriceType |
![]() |
| Viewing: ASP Free Forums > Programming > ASP Development > Microsoft VBScript compilation error '800a03ea' |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|
|