Tagged Questions
0
votes
1answer
135 views
Trying to get Session value in Global.asax, but it is NULL
I have a session which contains a List(of String) which I create on Main.aspx. In my Global.asax I execute the following code to retrieve the Session value after a Timer is fired.
Private Sub ...
0
votes
2answers
339 views
Session variable value not always available in Global.asax Session_end
When a user logs into the website, I am creating 5 session variables with some user related values (like userid,roleid etc..). Based on one of the values stored in a session variable, I have to update ...
-1
votes
1answer
233 views
Can I access the Session variable value inside the global.asax?
I want to get the session value inside the global.asax files, is it possible, if yes how please ?
0
votes
1answer
160 views
Session Check in global.asax messing with filehandler.ashx
I have recently integrated all my session checks into the global.asax which works fine but since i've put it in there when my pages call my filehandler.ashx to get images I keep getting null reference ...
0
votes
0answers
83 views
Base page Render event triggers session start
Can anybody advise with this symptom? I have an ASPX page which inherits from my own custom 'base page' class, and the page also contains an ASCX control, which may or may not be relevant.
The ...
0
votes
0answers
99 views
Multiple Session_Start events without matching Session_Ends?
Is there ever a situation where Session_Start can be called multiples times to a Session_End for the same session-id?
To investigate a potential session timeout issue, I've added logging to both of ...
1
vote
1answer
589 views
Is Application_AuthenticateRequest always before Session_Start?
Does Application_AuthenticateRequest always fire before Session_Start in global.asax? I'm trying to find some authoritative documentation regarding it.
I assume it does, and researching it suggests ...
0
votes
1answer
320 views
Forcibly logout all other sessions in case of multiple login by same user
I have an application where in im preventing multiple login by same user.If user tries to login from another webpage/machine(when already logged in another) then a confirm box appears asking whether ...
2
votes
1answer
279 views
Application_EndRequest not finding Session
I'm trying to set a cookie in Application_EndRequest in Global.asax.vb as suggested here
I've written the folowing code, cookie gets ERROR value. Why isn't session available?
Sub ...
0
votes
2answers
986 views
Session State Not Available In This Context - In Global.asax
I am getting a 'session state not available in this context' error.
http://i.stack.imgur.com/ihqyf.png
The error is nested in the sender parameter of a number of methods within the Global.asax file:
...
0
votes
0answers
226 views
c# asp.net mvc session start being called multiple times
I have a web site. I am using the session start in global.ascx and while debugging I noticed that it is being called a few times, and jumping from line to line what seems to be different threads. is ...
0
votes
1answer
176 views
logging off a user when the session times out
I am creating a mvc4 application and here I am creating a cookie to give a user access to various pages depending on their roles and things. but I have different doubt. Instead of logging off people ...
0
votes
1answer
858 views
Handling Session time out in mvc3
In my mvc3 (razor) application i want to handling session timeout by displaying a popup for re entering User id and password
How can i write it as common in Session_End() in Global.asax
Is it ...
0
votes
1answer
131 views
Getting username of last person visiting the site
I m really sorry for unclear question title but I am a bit confused about it myself.
I m running my website on IIS and on the top its displaying the username of the user who is currently logged in. ...
0
votes
0answers
283 views
How to define global session variable on session start in PHP as like global.asax in asp.net
I am Dotnet developer and new in PHP. I want to know that is any way to declare and initialize global session variables in PHP, only when session will be starts. I know that i can do this after ...
0
votes
1answer
1k views
Global asax and application_endrequest asp.net
Hello i got some question why when i run my method in global.asax it don't run and when i use IHttp module it is workin any advice.
Maybe its caused of context.PostRequestHandlerExecute += new ...
2
votes
3answers
1k views
force Session_Start
Hoe can I force the Session_Start method on my global.asax to be called every time my application runs on development mode?
I have some code that I need to debug but sometimes it is called, sometimes ...
2
votes
1answer
140 views
Global switch to make all controllers sessionless
Instead of having to go through all the controller classes and apply the proper attribute is there some way to do it globally?
1
vote
3answers
675 views
How to get a list of active sessions in a web application?
I am trying to get a list of active session id's in my web application.
I tried to manage a list in Global.asax.
I add session id when Session_Start is fired, and remove session id when Session_End ...
2
votes
3answers
3k views
Can Session_End fire on window close? (ASP.NET)
I am putting an "online" counter on a website, and I have run into these two contradicting sources.
This one (I am using this example code):
...
1
vote
0answers
449 views
Session_Start() called, then Session_End(), then Session_Start() again and URL changes
I've got a weird one. :-) I have an MVC (ASP.Net C#) app that uses CBA (and WIF) for authentication.
It works fine when I go to the default root of my app: https://myapp This calls my IP ...
1
vote
4answers
2k views
The Application_PreRequestHandlerExecute event doesn't fire for PageMethods. What can I use instead?
This article explains that the PreRequestHandlerExecute event does not fire for PageMethod calls for whatever reason. However, I'm trying to use that event to populate the Principal object with the ...
0
votes
2answers
1k views
Using session in global to update user login counter in SQL
Hallo,
I am relatively new in both asp and sql, but has created a website where users can log in and I want to save how many times each user has been logged in.
I want to use Global.asax to ...
0
votes
1answer
516 views
Dynamic site, access session in global
Hello i am currently developing a kind of wiki system for my school, this system uses sub domains to find what course the wiki belongs to. example math1.wiki.com will be the course Math 1.
Now all ...
2
votes
3answers
3k views
ASP.Net Session_Start always firing
I am a bit confused about the following:
I set up an asp.net Website with some logic in the Session_Start() of the Global.asx. I expected that this even will only trigger once during a session. ...
2
votes
3answers
3k views
what happens with session_start in global.asax if session timeouts?
I have multidomain web application which treats users differently based on URL they use.
I am using Session["data"] to keep information about user and starting this session with Session_Start["data"] ...
0
votes
0answers
3k views
Checking for a session variable… returns (Object reference not set to an instance of an object???)
In the Session_Start of the Global.asax i have
Sub Session_Start(ByVal sender As Object, ByVal e As EventArgs)
Session("login") = False
End Sub
and in a custom .aspx page i included the ...
2
votes
3answers
284 views
ASP.NET Session identifier
I'm trying to make a session code for each client on my site. In the Session_Start of the global asax I have this code:
private static long codSesion = 0;
private static object codSesionLocker = new ...
1
vote
1answer
1k views
Session variable getting lost?
Given this Global.asax.cs:
using System;
using System.Web;
namespace Foo.Web {
public class Global : HttpApplication {
private const string IntroductionPageShownSessionKey = ...
2
votes
3answers
636 views
Raise Session_OnStart event from custom ASP.NET SessionStateProvider class
I'm working on an asp.net project that uses an in-house developed custom SessionStateProvider class.
Evidently, the Session_OnStart event is not firing. I have code in Global.asax to handle the ...
0
votes
1answer
908 views
Calling the Session before any Controller Action is run in MVC
I have this authentication check in my global.asax file in the Session_OnStart() call:
if (Session["Authenticated"] == null)
{
Response.Redirect("~/Login.aspx");
}
This ...
0
votes
2answers
838 views
Storing Requested URL in Global.asax without Session State in ASP.NET
I have a complex URL rewriting scheme which breaks the built in Forms Authentication ReturnUrl mechanism. I would like to grab the requested URL for later redirection away from my login.aspx. I can ...
0
votes
3answers
2k views
ASP.NET: Large number of Session_Start with same session id
I'm running a ASP.NET website on my development box (.NET 2.0 on Vista/IIS7).
The Session_Start method in global.asax.cs logs every call to a file (log4net).
The Session_End method also logs every ...
0
votes
3answers
3k views
ASP.NET - Get SessionID while in from the Global.ASAX
I'm recording the session start times from when people log into my .NET 2.0 web application, but I'd also like to record the Session ID. Can someone give me some example code on how to accomplish ...
1
vote
1answer
517 views
ASP.NET:,Will session variables exist when Application_Error method being called from global.asax?
In ASP.NET ,Will session variables exist when Application_Error method being called from global.asax ?Can i access values of my session variables there ?
0
votes
1answer
65 views
ASP.Net use of documents
I have a problem in my asp.net application. The users can access a document, but only one user can access one document at the same time. When a user gets a document, a flag in the db is updated for ...
2
votes
4answers
12k views
ASP.NET :Access Session variable in global.asax
I have an ASP.NET application and in the golbal.asax ' Application Error Event, i am calling a method to trace/log the error.I want to use the session variable content here .I used the below code
...
7
votes
4answers
921 views
When's the earliest i can access some Session data in global.asax?
i want to check if the Session contains some key/value data, in my global.asax. I'm not sure when the earliest possible time (and method name) is, to check this.
thanks :)
0
votes
4answers
3k views
Events in Global.asax are not firing
In my ASP.Net application, I can't get the events in Global.asax to fire on my machine. For instance, Session_Start will not fire.
The same Global.asax works fine on other development machines in my ...
10
votes
7answers
34k views
“HttpContext.Current.Session” vs Global.asax “this.Session”
Recently, while working on some code for an ASP.NET project at work. We needed a tracking util to take basic metrics on user activity (page hit count etc) we would track them in Session, then save the ...
0
votes
1answer
1k views
Get Session start information if Session is turned off in ASP .NET
I have an ASP .NET information and I currently have session state turned off so I can't exactly hook into the session start event within the Global.asax. I want to get at this data, when someone comes ...
12
votes
4answers
22k views
Asp.net System.Web.HttpContext.Current.Session null in global.asax
I have a custom security principal object which I set in the global.asax for the current thread and all is well, no problems normally.
However, I'm just adding a dynamic image feature by having a ...
7
votes
4answers
5k views
ASP.Net Session_Start event not firing
I have an ASP.Net 2.0 application in which the Session_Start event is not firing in my Global.asax file. Can anyone tell why this is happening and how I can get it working?
The application worked ...

