Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
4answers
971 views

Pros and Cons of using ASP.NET Session State Server (instead of InProc)?

Before I start using Session State server for the benefit of making session state more robust in may apps compared to InProc state, I'd like to find a list of Pros and Cons for evaluation. Update ...
4
votes
3answers
434 views

Session Timeout and page response time

I'm load testing an asp.net app. The load test is simulating 500 user doing searchs on the site and browsing the results. I'm observing that the more I reduce the session timeout limit (in web.config) ...
3
votes
4answers
91 views

When should I consider to use SessionState to keep my variable values?

Is is possible to say something like "If you have those situations then SessionState is a must to use for storing your values between postbacks." Can you list me the basic reasons which forces an ...
3
votes
2answers
853 views

ASP.Net SessionState using SQL Server - is the data encrypted?

When using Sql Server to store and manage the SessionState, is the session data stored in the database using encryption? When I look at the data in the ASPNet database, the data in the ...
2
votes
2answers
411 views

How ASP.Net Cookieless is work?

I try to set the <sessionstate /> in my web.config but I don't know what are they. I would like to know about ASP.Net <SessionState cookieless="" />. <sessionState ...
2
votes
3answers
79 views

how to know how many memory resources I'm using with sessionState variables

It's possible to know how many memory resources I'm using with SessionState variables in an Asp.Net site? I don't want to make changes to the application to resolve it. Will be great if I can know ...
1
vote
1answer
37 views

Cannot access session state across instances with Universal Session State Provider with SQL

I have an Azure project that contains a web application. It runs with two instances in the compute emulator. I've added the universal provider for session state and am currently pointing it to a SQL ...
1
vote
0answers
42 views

AJAX and ASPSTATE

we've been having quite a lot of problems with our application which has intermittent performance problems which uses the ASPSTATE to manage its session state. At high volumes, we're seeing a lot of ...
1
vote
2answers
47 views

SessionState not being preserved in Handlers [closed]

Possible Duplicate: Can I access session state from an HTTPModule? I have set up and am using SQLServer State handling and it works well within my project. But I have shared resource file ...
1
vote
3answers
45 views

ASP.NET Session

is there a way to have different session states? As in, have different objects stored in the session but with differing expirations ie: i have two session objects, Session["ReportIDs"] and ...
1
vote
1answer
136 views

SessionState in own SQL Server database on windows shared hosting

My ASP.NET site is on Windows Shared Hosting. I need to keep SessionState in SQL Server on my site, and standard way is to use ASPState DB. But that DB is inaccessible on windows shared hosting, and ...
1
vote
0answers
390 views

IE6 accessing MVC3 web app loses session state

I’m investigating a bug in my MVC3/.NET 4 site which runs on IIS7.5 with integrated pipeline that only manifests itself when accessed using IE6. The process in pseudo is: Browser requests Page A; ...
1
vote
3answers
199 views

Is it possible to share session state between asp classic and asp.net

We are migrating an ASP Classic website over to ASP.Net. One of the big hurdles is the large amount of data stored in SessionState by the ASP Classic website. I am looking for ways that session ...
1
vote
3answers
440 views

SessionState Timeout never fires

What am I doing wrong. The sessionState Timeout never fires,It only fires after 24 hours, I want to let it fire in 20 minutes on my webpage. In the web.config I handle the sessionstate like this: ...
1
vote
0answers
50 views

Cant update sessionstate when running web app on IIS!

I have put together a small web app which reads and presents published certiicates for Active Directory and I need to keep the scroll position when I switch from the certificate list view (can be ...
1
vote
1answer
141 views

Asp.net MVC SQL Server State IIS 6

Is it possible to implement SQL Session State with ASP.NET MVC without the addition of code to our webapp? We need this to be a transparent switch from In-proc to SQLServer.
1
vote
1answer
145 views

Why do I get “could not load type” error with my custom SessionStateProvider?

My associate has created a custom SessionStateProvider for me to use with my ASP.net application. I add the file CustomSessionStateProvider to my VS2008 Web Application Project and put the ...
1
vote
2answers
192 views

Sessionstate server (webfarm) environment, user sessions get mixed up

I've got a strange problem. Let me first describe my situation: Webserver01 (Webapplication, SQL, SessionState Service) Webserver02 (Webapplication) Both webservers are load balanced using NLB. ...
1
vote
1answer
109 views

CompilationMode=Never & SessionState

It seems that CompilationMode=Never doesn't permit Sessions to be properly wired. It first complains that the EnbaleSessionState directive is not allowed on this page. Explicitly assigning the ...
1
vote
7answers
507 views

ASP.Net Session State

I was wondering whether it would be possible to change the sqlConnectionString used for SessionState in ASP.net based upon the domain an application is running on? A scenario; We have 20 sites ...
0
votes
0answers
27 views

ASP.NET Session sharing using common AppDomainAppId crashes aspnet_isapi

As a part of implementing mechanism to share session state (SQLServer mode) between two ASP.NET applications I had to change AppDomainAppId for both applications to match. The solution is explained, ...
0
votes
1answer
40 views

Currently accepted cookie-less way to handle client-side session information in browser window?

I have looked at the follow libraries/plugins, but some are a little older and I'm trying to determine if there is an accepted technique which people are generally using. ...
0
votes
1answer
23 views

How hard is it to setup a session state database for ASP.NET applications in an IIS farm?

How hard is it to setup a session state database for ASP.NET application running in an IIS farm? I've received advice to never store anything at all in session state in my new ASP.NET 4 / IIS 7 ...
0
votes
1answer
72 views

Static asp.net session for all users

I developing a ASP.net 4.0 application, with a shoppingcart. The problem is that user 1 places something, and user 2 gets it also. How can it been session sharing... // Readonly properties can only ...
0
votes
1answer
200 views

asp.net application iis7 sessionstate is crossing over multiple users in different locations

got a asp.net web app (2.0) which we moved over from iis 6 to iis 7. it worked good for 6 months. three days ago we have been seeing issues that one loged in users sees other user information. ( ...
0
votes
0answers
24 views

Timing users out before session state timeout allotted time

I have a sessionState variable in the webconfig file that will time users out at 60 minutes. However, it is kicking them out in around 20 minutes. I have read it is in the IIS settings and to change ...
0
votes
1answer
63 views

ASP.NET Session State in Cluster

Our project was implemented originally with in memory session state. We need to scale up and add another server in an IIS server farm. I did all the steps to get the session state stored in a sql ...
0
votes
0answers
49 views

weird session state behaviour

I am having an application that was running very fine in testing environment , when we published it live it goes for more than 10 exceptions per second , as we are having arround 20,000 visitors daily ...
0
votes
1answer
31 views

What is the best and quick way to debug serialization exceptions in asp.net

Serialization exceptions are notorious and often dont have the complete stack trace to tell exactly which complex type is the culprit. I am trying to serialize a very complex type but facing ...
0
votes
1answer
199 views

Architecture For C#/.NET 4.0 Custom SessionState Provider/ Module /SessionItems Collection Class Lib?

This question pertains to writing a massively scalable & efficient customer sessionstate class library in C# and I am in desperate need of sage counsel. Original thread that has been guiding me ...
0
votes
0answers
70 views

Httpmodule SessionState and PHP

Is there any way when using PHP under IIS to be able to actually have a sessionstate create to store information to pass between the different eventhandlers of the module? Seems like if I create an ...
0
votes
2answers
113 views

ASP.net: How to list a WebApplication All users Session

I want to know my website memory usage,first i want to know Session detail of all users,this will help me decide whether to change sessionState Mode to "SqlServer" or "StateServer". How can i do? ...
0
votes
2answers
601 views

Session State and Application Pool

I have a webserver, and my team have set the application pool for the web application to 3 for resilence and performance. However, we have stumbled upon a problem where part of the application is not ...
0
votes
0answers
132 views

asp.net creating a different sessionid for each server in web farm

I have a .NET MVC application that relies heavily on Session. Session state is configured for SQL Server. After deploying the application to the 2 servers behind the load balancer, when a user's ...
0
votes
1answer
149 views

ASP.NET Sessions Question (Masterpage / Normal ASP.NET Page)

I've got a web application that uses both master pages and standard .aspx pages. For my login routine I'm using sessions, I create the session when the user logs on, navigating through any content ...
0
votes
1answer
162 views

How can I Set “cookieName” attribute of the “sessionState” XML element in my web.config programatically

Multiple applications are sharing the same session cookie at the moment and I don't want this to be the case, however, I would like to set the value in code rathr than hardcode a value using the ...
0
votes
1answer
86 views

castle monorails no simultaneous requests from the same user

I have created an website in Castle Monorails and the users that are using the site are complaining that it is very slow so I have done some investigations with fiddler and I discovered that the ...
0
votes
5answers
709 views

ASP.NET Session expires in no time?

Weired problem! ASP.NET Session expires instantly. In my web.config I have this session settings: <sessionState mode="InProc" timeout="10000" /> AFAIK the timeout attribute's value is in ...
0
votes
2answers
428 views

SessionState out of memory exception

I am getting "Out of memory exception" when assigning values in session variables. The session values are maintained in stateserver. How to increase the size of the session stateserver memory? or any ...
0
votes
1answer
967 views

How do I [WebMethod(EnableSession=true)] on UpdatePanel postbacks?

Currently we have a set of form controls that do post backs and we decided to get some "free" user experience by wrapping them in an update panel. The controls store data in the session state for ...
0
votes
1answer
181 views

Oracle ODP.NET and double clicking hyperlink

I've installed ODP.NET and am using the session state service through Oracle for an ASP.NET website. I tested it, I thought, pretty thoroughly and didn't see any major problems. Some of the users ...
-3
votes
1answer
25 views

Session Abandoned

I have a problem about session in my ASP.NET Web App. When i write my username and password and clicked login button, session is abandoned. In my web.config, i use : sessionState mode="InProc" ...