I am using the Debugging tool for testing. The problem I have is that every time I start new debugging, the session seems reset, by redirected from the current debugged page to the User Login page. This is happening despit the session configuration I set
in the web.config file.
The web.config setting I made is as follow:
<?xml version="1.0"?>
<configuration>
<sessionState timeout ="60" />
</configuration>
At the loading even of my aspx pages, I have:
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
If Session("UserName") = "" Then
Response.Redirect("~\Logon\LogonScreen.aspx")
End If
End Sub
So even I just made the login, I am redirected to the LogonScreen.aspx page again once start debugging is made.
So how to extend this and make su ...
Go to the complete details ...