Ok i have 2 asp pages
from one page i have a link like so in pagename1.asp
<A HREF="pagename2.asp?thread=<%=value%>">Link</A>
heres the problem
in pagename2.asp im using thread = Request.QueryString("thread" to get the value passed. Ive tested that the value is actually getting passed by printing it to the screen. When i try to use thread in an if statement, the conditional is not seeing the value of tread
( i.e. where both values = 1 )
If value1 = thread Then
What the heck am i doin wrong?
from one page i have a link like so in pagename1.asp
<A HREF="pagename2.asp?thread=<%=value%>">Link</A>
heres the problem
in pagename2.asp im using thread = Request.QueryString("thread" to get the value passed. Ive tested that the value is actually getting passed by printing it to the screen. When i try to use thread in an if statement, the conditional is not seeing the value of tread
( i.e. where both values = 1 )
If value1 = thread Then
What the heck am i doin wrong?