hi,
After someone logs in to my site's main page I capture the user i.d. to a
session variable like this:
"Dim requestorID
session("reques torID") = Request("HidUse rID")"
When I perform "Welcome <%=session("req uestorID")%>"
it displays "Welcome userid" as it should. Whenever I go to another page in
the application and then return to the main page it displays "Welcome" only.
Why does the session variable disappear?
I have "<%Response.Buf fer = True%>".
After someone logs in to my site's main page I capture the user i.d. to a
session variable like this:
"Dim requestorID
session("reques torID") = Request("HidUse rID")"
When I perform "Welcome <%=session("req uestorID")%>"
it displays "Welcome userid" as it should. Whenever I go to another page in
the application and then return to the main page it displays "Welcome" only.
Why does the session variable disappear?
I have "<%Response.Buf fer = True%>".
Comment