Click to See Complete Forum and Search --> : a question about request()


pelegk1
08-04-2003, 06:34 PM
i have a url : page1.asp?x=3&y=9

is there a diffrence if i will do :
xxx=request("x")

or
xxx=9
or
xxx="9"

i noticed that it's not execlly the same the value that is putten
in the xxx var, when doingit in request() mode it dosnt match at all 1 of the 2 case "9" or 9!
why is that?
10X:)
peleg

pelegk1
08-05-2003, 10:26 AM
beacuse when i do
isObject(request("x")) ->TRUE
x="asdf"
isObject(x) ->false

the problem is that when i use request i get my page towork (ehich work;s with wsdl dll)
if i read the params using request everything is ok!
but if instead i do hard-coding like
x=10
then it dosrnt eork?1?!?!
why
10X:)
peleg