Could someone help me figure out how to utilize .servervarialbles (or
another creative method) to do the following:

If someone types into browser (or clicks a querystring hyperlink) with the
following....

http://www.boat.com/?cat=CrazyHorse

...* Is it possible to extract the ?cat=Crazyhorse
from the typed in or clicked url when he reaches that root page?

I thought perhaps this could work but no:

CrewedCat = Request.ServerVariables("QUERY_STRING") Response.Write "
" & CrewedCat & "
"

Re: Server variable riddle - extract typed in querystring after url by SiteGuru

SiteGuru
Thu Oct 30 16:06:30 CST 2003

CrewedCat = Request.Querystring("cat")

--
--
Cheers!
SiteGuru
http://www.siteguru.co.uk
"jason" <jason@catamaranco.com> wrote in message
news:eLe8T4ynDHA.2456@TK2MSFTNGP09.phx.gbl...
> Could someone help me figure out how to utilize .servervarialbles (or
> another creative method) to do the following:
>
> If someone types into browser (or clicks a querystring hyperlink) with the
> following....
>
> http://www.boat.com/?cat=CrazyHorse
>
> ...* Is it possible to extract the ?cat=Crazyhorse
> from the typed in or clicked url when he reaches that root page?
>
> I thought perhaps this could work but no:
>
> CrewedCat = Request.ServerVariables("QUERY_STRING") Response.Write "
> " & CrewedCat & "
> "
>
>