Dear All,

I am new to ASP/ASP.Net and am trying to workout the exact meaning of
some old ASP Classic code. Can anyone please explain the meaning of
the following line of code:

Response.Redirect("store.asp?r=1&m=3")

In particular I need to understand the parameters (i.e. r=1&m=3) that
are being passed, and if they are defaults where can I get a listing
and explanation of their meanings and uses?

Thanks.

Alasdair Stirling

Re: Response.Redirect problem in Classic ASP by Mike

Mike
Tue Sep 05 09:18:35 CDT 2006


alasdair.stirling@gmail.com wrote:
> Dear All,
>
> I am new to ASP/ASP.Net and am trying to workout the exact meaning of
> some old ASP Classic code. Can anyone please explain the meaning of
> the following line of code:
>
> Response.Redirect("store.asp?r=1&m=3")
>
> In particular I need to understand the parameters (i.e. r=1&m=3) that
> are being passed, and if they are defaults where can I get a listing
> and explanation of their meanings and uses?
>

No one can tell you what the parameters are without looking at the code
in store.asp. In that file, there should be some conditional logic
that will look for the values of Request.QueryString("r") and
Request.QueryString("m"), and take certain actions as a result of those
values.

There is no such thing as default parameters or values in Classic ASP
querystrings. "r" and "m" could just as well have been called "mouse"
and "stopstandingonmyfoot" with any string as the value (as in
store.asp?mouse=sink&stopstandingonmyfoot=2234cfd4). r and m and 1 and
3 would no doubt (I mean probably) have had some meaning to the
original programmer, which might be discerned from the code.

Response.Redirect will redirect the browser to the store.asp page, with
those parameters in the querystring

--
Mike Brind


Re: Response.Redirect problem in Classic ASP by Daniel

Daniel
Tue Sep 05 09:17:59 CDT 2006

alasdair.stirling@gmail.com wrote on 5 Sep 2006 06:56:05 -0700:

> Dear All,
>
> I am new to ASP/ASP.Net and am trying to workout the exact meaning of
> some old ASP Classic code. Can anyone please explain the meaning of
> the following line of code:
>
> Response.Redirect("store.asp?r=1&m=3")
>
> In particular I need to understand the parameters (i.e. r=1&m=3) that
> are being passed, and if they are defaults where can I get a listing
> and explanation of their meanings and uses?

They are query string parameters. If you look in the store.asp code you'll
likely find it reads the values of Request.QueryString("r") and
Request.QueryString("m") and does something with them. Outside of code
within the store.asp page they are meaningless.

Dan



Re: Response.Redirect problem in Classic ASP by Bob

Bob
Tue Sep 05 09:43:48 CDT 2006

alasdair.stirling@gmail.com wrote:
> Dear All,
>
> I am new to ASP/ASP.Net and am trying to workout the exact meaning of
> some old ASP Classic code. Can anyone please explain the meaning of
> the following line of code:
>
> Response.Redirect("store.asp?r=1&m=3")
>
> In particular I need to understand the parameters (i.e. r=1&m=3) that
> are being passed, and if they are defaults where can I get a listing
> and explanation of their meanings and uses?
>
This is a querystring, which has exactly the same function in ASP.Net as
it had in classic ASP.
--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.