Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Problem with Repsonse.Redirect

Status
Not open for further replies.

sladewilson

Programmer
Feb 14, 2002
90
0
0
US
Microsoft VBScript compilation error '800a03ee'

Expected ')'

/insure/admin_memberupdate.asp, line 38

Response.Redirect ("admin_memberedit?uid="(Request"uid"))".asp")

Anyone know what the problem might be?
 
Try this (note I'm tired now so it might be off)
Code:
Response.Redirect "admin_memberedit?uid=<%= Request.Form("uid") %>.asp"
 
Code:
Response.Redirect ("admin_memberedit?uid=" [COLOR=red] & [/color] Request[COLOR=red]([/color]"uid") [COLOR=red] & [/color] ".asp")

and request should specify the collection (Form, Querystring,Cookies etc) otherwise it has to search through all the collections to find a match.

Chris.

Indifference will be the downfall of mankind, but who cares?
Woo Hoo! the cobblers kids get new shoes.
People Counting Systems

So long, and thanks for all the fish.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top