Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
551 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
744 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 ...
3
votes
2answers
2k 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?
2
votes
1answer
262 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
1answer
295 views

Can I store Session state in my ASP.NET MVC app's existing SQL Azure DB?

I'm using EF4.1 in code-first style to persist POCO objects for a small ASP.NET MVC 3-based webapp in an SQL Azure DB 'MyAppsDB'. The tables are automatically created in MyAppsDB when they don't ...
1
vote
2answers
112 views

How maintain session beetween two Url in asp. Net

I have two URl's . If I open first url it will allow us authentication. Second URL will open web content as XML data. I need to read that data... But when I excute first URL its working fine ...
1
vote
2answers
458 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
541 views

Using ASP.NET session state with Silverlight (PRISM)

The scenario: I have a PRISM application developed in Silverlight (4), and I'm using a ASP.NET server side application to host several web-services (which, in turn, accesses WCF-services, but that's ...
1
vote
2answers
446 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 ...
1
vote
2answers
2k views

Storing values in asp.net session using jquery

How to store values in the session using jquery. I am using the following code var Link = '<%=Session["Link"]%>'; to get data from session. How to do the reverse process. Problem: I need ...
1
vote
4answers
963 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 ...
0
votes
0answers
271 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
2answers
878 views

Type '' in Assembly '' is not marked as serializable. linq-to-sql

I am using asp.net and have configured the sessions to stored in SQL server. My porject has many object and several linq-to-sql dbml's. I have configured all the them to have unidirectional ...
0
votes
1answer
125 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
174 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
687 views

DataServiceRequestException with TableStorageSessionStateProvider

I'm trying to use the TableStorageSessionStateProvider from the Azure training kit. I can use the example without problems but when I use it in my web app, I get this exception: ...
0
votes
1answer
489 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
1answer
749 views

How do I access a asp.net session variable from APP_CODE?

I have seen lots of posts here and elsewhere stating that one can access session variables from app_code. I want to access an already created session. this code errors out because of a null ...
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 ...