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 biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Response.Redirect Question

Status
Not open for further replies.

saw15

Technical User
Jan 24, 2001
468
US
Currently we use:

Response.Redirect "CreateAccount.asp?mk=" & member(1).Member_Key

I need to add another parameter to this, the Status field.

How would I make or use multiple fields, member_key and status ?
 
Response.Redirect "CreateAccount.asp?mk=" & member(1).Member_Key & "status=" & member(1).status Bastien

There are many ways to skin this cat,
but it still tastes like chicken
 
I have tried that, and when I use the following:

mk = Request.QueryString("mk")

I get the following results:

mk="110Status="

I only want mk="110" but I need to include status for future use. How does it know one item from the next ? Do I need a delimiter?

 
I think you should have an ampersand in there...

Response.Redirect "CreateAccount.asp?mk=" & member(1).Member_Key & "&status=" & member(1).status
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top