Dec 27, 2006 #1 TTA23 MIS Sep 26, 2006 41 US I have a redirect as follows: Response.Redirect ("Thx.asp?prd=ABC) I would like to replace ABC with a variable named Var_ABC. How should i rewrite this? Thanks in advance
I have a redirect as follows: Response.Redirect ("Thx.asp?prd=ABC) I would like to replace ABC with a variable named Var_ABC. How should i rewrite this? Thanks in advance
Dec 27, 2006 #2 DotNetGnat Programmer Mar 10, 2005 5,548 IN something like this: dim myvar myvar ="something" Response.Redirect ("Thx.asp?prd="&myvar) -DNG Upvote 0 Downvote