0
votes
2answers
88 views
Classic ASP to ASP.Net one-off session data copy
We have an extensive classic ASP site, and we're looking to upgrade to ASP .Net (most probably the latest version). Obviously upgrading all the pages at once would be a leviathan task, so we're only …
0
votes
3answers
181 views
ASP.Net Error - Unable to cast object of type ‘System.String’ to type ‘System.Data.DataTable’.
I get the below error
Unable to cast object of type 'System.String' to type 'System.Data.DataTable'.
This is the code I'm using
Dim str As String = String.Empty
If (Session("Brief") IsNot …
1
vote
3answers
77 views
ASP.NET Multi Session
I have an ASP.NET 2.0 application that is using the Forms Authentication. When a user logs into the application a session object is created as well as a cookie and everything is fine. The …
0
votes
1answer
72 views
How can I set the Secure flag on an ASP.NET Session Cookie?
How can I set the Secure flag on an ASP.NET Session Cookie, so that it will only be transmitted over HTTPS and never over plain HTTP?
0
votes
3answers
164 views
Maintain a user’s session state in an ASP.NET MVC app hosted on a web farm
What is the best way to maintain a user's session state in an ASP.NET MVC app hosted on a web farm?
Out application currently uses the standard ASP.NET session on IIS 6.0 but we want to move the app …
