I have a session variable. it works on some pages but not all them
I have my first page setup this way for my session variable
Session("user") = request.form("user") I go to the next page by using form action
On the second pages I have this:
this works fine
Dim testing
testing = Session("user")
response.write testing
However on this page I have a link that points to another page.
this link works but does not pass the session variable so I get a server error
Response.Write"<tr align=left><td><a href=""" & "XML_CHECK.asp?fname=" & item.Name & _
""" target=""mainFrame"">" & url & " </td><td>" & url3 & " </td><td>" & url2 & _
" </td> <td>" & date3 & " </a> </td></tr>"
I have my first page setup this way for my session variable
Session("user") = request.form("user") I go to the next page by using form action
On the second pages I have this:
this works fine
Dim testing
testing = Session("user")
response.write testing
However on this page I have a link that points to another page.
this link works but does not pass the session variable so I get a server error
Response.Write"<tr align=left><td><a href=""" & "XML_CHECK.asp?fname=" & item.Name & _
""" target=""mainFrame"">" & url & " </td><td>" & url3 & " </td><td>" & url2 & _
" </td> <td>" & date3 & " </a> </td></tr>"