Tagged Questions

4
votes
1answer
606 views

Session ID not random enough - ASP.NET

UPDATE We eventually had a meeting with some programmers on the Acunetix team and they realized there may be a few bugs in their code that are causing this to be displayed in the scan as more of an ...
4
votes
3answers
2k views

ASP.NET session state provider in Azure

As far as I know, the current situation is this: Use SQL session state provider is possible (as I've read somewhere) but it's not supported by Microsoft. So it could stop working in the future. ...
3
votes
3answers
766 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 ...
2
votes
1answer
289 views

ASP.NET MVC project architecture problems — authorization and session

I am finishing a project that started another programmer. Alter the entire architecture is not possible, but some things I want to overwrite. Namely - the authorization, and a way to store the current ...
1
vote
2answers
478 views

Reuse another ASP.NET session (set Session ID)

My problem is that when I open web application from Outlook in a separate IE window, the ASP.NET session is lost. This is (as described in several places) because in-memory cookie is lost. So it goes ...
1
vote
2answers
452 views

Session lost when opening IE window from application hosted in Outlook

An ASP.NET application (actually with Silverlight but it doesn't matter) is hosted in Outlook as folder home page. In this application there's a link to open popup window, which opens a separate IE ...
0
votes
0answers
302 views

Change ASP.NET_SessionId cookie after authentication

There is issue if same ASP.NET_SessionId persist before or after authentication. As soon as user is authenticate ASP.NET_SessionId should be change to avoid session trapping issue. So i tired two ...
0
votes
1answer
136 views

Does ASP .NET Session reset after login?

EDIT This problem seems to have strangely disappeared. There must've been something funky with my environment. I'm voting to close this question. When a user logs in, I inflate the session with a ...
0
votes
2answers
187 views

stop user accessing home page directly

i have 2 pages in my application: Login.aspx & Home.aspx. Now if user is not login, he should not access the Home.aspx from a web browser. I know that is possible by session, but don't know how ...
0
votes
1answer
496 views

Is it possible to share session state between asp.net aspx page making a call to an asp.net webservice

My Situation: I have 1 asp.net application with both aspx pages AND webservices I make calls (using ajax) to the webservice from an aspx page - all within the same asp.net application! Here is my ...
0
votes
3answers
2k 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 ...