Re: FN-FORUM: Querystring
date posted 16th January 2006 16:01
> Hi guys
>=20
> Right this is driving me nuts.
>=20
> All I want this script to do is evaluate the querystring, and set a =
class.
> But it completely ignores the querystring, and sets the default class.
> Code below, anyone any ideas?
>=20
> dim sel, id, i, r
> id =3D 1
> i =3D 1
> r =3D 0
> sel =3D request.querystring("r")
> do while r < 100
> response.write ""
> do while i < 101%> else
> response.write "class=3Dpix"
> end if
>=20
How is this called? have you invoked .asp?r=3D10 ?
Have you examined request.querystring which will show if the whole =
querystring is well-formed?
What is request("r")?
John