Dim trademail
trademail = Request.Form("trademail")
Response.Redirect("help.asp?reminder=1&tradema il<%=trademail%>")
...is producing the following error:
Microsoft VBScript compilation (0x800A0409)
Unterminated string constant
/reminder.asp, line 94, column 65
I want to add the form variable "trademail" to my querystring when directing back to my help.asp page.
I initially thought that this would work:
Response.Redirect("help.asp?reminder=1&tradema il=<%=Request.Form("trademail")%>")
...but this produces the following error:
Microsoft VBScript compilation (0x800A03EE)
Expected ')'
/reminder.asp, line 92, column 70
...so I tried this:
Response.Redirect("help.asp?reminder=1&tradema il=<%=Request.Form(" & trademail & ")%>")
...but this takes me back to the Unterminated string constant error!
Would appreciate any advice as it's driving me to distraction now. Thanks.
NJ