Connecting Tech Pros Worldwide Forums | Help | Site Map

How to redirect with param

Don Grover
Guest
 
Posts: n/a
#1: Jul 19 '05
In asp page how can I do this, can't seem to get it right

iInvNum = 123456
Response.Redirect "mypage.asp?invnum=iInvNum"
^ wrong here

Don



Bob Barrows
Guest
 
Posts: n/a
#2: Jul 19 '05

re: How to redirect with param


Don Grover wrote:[color=blue]
> In asp page how can I do this, can't seem to get it right
>
> iInvNum = 123456
> Response.Redirect "mypage.asp?invnum=iInvNum"
> ^
> wrong here
>
> Don[/color]
Response.Redirect "mypage.asp?invnum=" & iInvNum

HTH,
Bob Barrows

--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"


Steven Burn
Guest
 
Posts: n/a
#3: Jul 19 '05

re: How to redirect with param


iInvNum = 123456
Response.Redirect "mypage.asp?invnum=" & iInvNum

--

Regards

Steven Burn
Ur I.T. Mate Group
www.it-mate.co.uk

Keeping it FREE!

Disclaimer:
I know I'm probably wrong, I just like taking part ;o)


Don Grover <spamfree@assoft.com.au> wrote in message
news:uGPXZGEvDHA.1680@TK2MSFTNGP12.phx.gbl...[color=blue]
> In asp page how can I do this, can't seem to get it right
>
> iInvNum = 123456
> Response.Redirect "mypage.asp?invnum=iInvNum"
> ^ wrong[/color]
here[color=blue]
>
> Don
>
>[/color]


Don Grover
Guest
 
Posts: n/a
#4: Jul 19 '05

re: How to redirect with param


Thanks, I had a mental block,.
Im going to take a holiday i think.

Don


"Bob Barrows" <reb01501@NOyahoo.SPAMcom> wrote in message
news:esf%23VKEvDHA.3196@TK2MSFTNGP11.phx.gbl...[color=blue]
> Don Grover wrote:[color=green]
> > In asp page how can I do this, can't seem to get it right
> >
> > iInvNum = 123456
> > Response.Redirect "mypage.asp?invnum=iInvNum"
> > ^
> > wrong here
> >
> > Don[/color]
> Response.Redirect "mypage.asp?invnum=" & iInvNum
>
> HTH,
> Bob Barrows
>
> --
> Microsoft MVP - ASP/ASP.NET
> Please reply to the newsgroup. This email account is my spam trap so I
> don't check it very often. If you must reply off-line, then remove the
> "NO SPAM"
>
>[/color]


Closed Thread