For example login session("UID") is 10
In my program xyz.asp this test gives 10
but the following conditions code does not work
If I manually insert the following code it works
What am I doing wrong ?
Thanks for tips.
In my program xyz.asp this test gives 10
Code:
<%response.write session("uid")%>
but the following conditions code does not work
Code:
<%if rsRC("MemberID")=Session("UID") Then%>
<p style="color: blue; font-weight: bold; background-color: lightgrey;">
<%end if%>
If I manually insert the following code it works
Code:
<%session("uid")=10%>
What am I doing wrong ?
Thanks for tips.