Link to home
Start Free TrialLog in
Avatar of Mark Drelinger
Mark DrelingerFlag for United States of America

asked on

VBScript syntax for Redirect URL

I am having trouble with VB syntax for redirect url parameter.
I need the value to be EquipmentDataReservationAddAlert.asp?CustomerTableID=1000

My code:
TM_editRedirectUrl = "EquipmentDataReservationAddAlert.asp?CustomerTableID=''<%Request.Form(''CustomerTableID'')%>"

Result error:
Microsoft VBScript compilation error '800a0409'
Unterminated string constant
/WebApps2.0/EquipmentDataReservationAddRequest.asp, line 62
TM_editRedirectUrl = "EquipmentDataReservationAddAlert.asp?CustomerTableID=''<%Request.Form(''CustomerTableID'')
ASKER CERTIFIED SOLUTION
Avatar of Bill Prew
Bill Prew

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Mark Drelinger

ASKER

Thanks for the assistance.