A special file in the ASP.NET framework, it provides a simplified interface to create hooks into system events in the life cycle of a web application and web pages in that application.
5
votes
4answers
25k views
How to handle session end in global.asax?
I'm working in chat application, I used HashTable for containing User and Operator as a Key & Object of ChatRoom Class as a value of HashTable. Main problem is that When user or Operator close ...
6
votes
2answers
4k views
ASP.NET MVC app custom error pages not displaying in shared hosting environment
I'm having an issue with custom errors on an ASP.NET MVC app I've deployed on Go Daddy. I've created an ErrorController and added the following code to Global.asax to catch unhandled exceptions, log ...
7
votes
6answers
1k views
ASP.NET MVC Url Route supporting (dot)
I hope that you can help me with the below problem.
I am using ASP.NET MVC 3 on IIS7 and would like my application to support username's with dots.
Example: http://localhost/john.lee
This is how my ...
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 ...
17
votes
2answers
8k views
what is the global.asax Application_Start equivalent when using WAS in IIS7
I'd like to use the netTcpBinding for my WCF application which is currently hosted in IIS7, which means configuring it to use WAS instead. This is fairly straight forward however, my application ...
31
votes
4answers
12k views
Multiple HttpPost method in MVC4 Web API Controller
I am starting to use MVC4 Web API project, I have controller with multiple HttpPost methods. The Controller looks like the following:
Controller
public class VTRoutingController : ApiController
...
37
votes
2answers
11k views
When to use Application_Start vs Init in Global.asax?
I am wondering under what circumstances I should be putting application initialisation code in Application_Start() vs Init() in my Global.asax file?
The distinction between the two doesn't seem very ...
12
votes
7answers
8k views
it is possible to Debug Global.asax?
I cant debug global.asax file! i have some codes in Application_Start() method but when I set break point in method it is ingonred! is this normal?
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 ...
3
votes
4answers
7k views
global.asax Application_Error not firing
My global.asax seems not to be firing. I have:
void Application_Error(object sender, EventArgs e)
{
// Code that runs when an unhandled error occurs
...
39
votes
4answers
10k views
How can I use Server.MapPath() from global.asax?
I need to use Server.MapPath() to combine some files path that I store in the web.config.
However, since Server.MapPath() relies on the current HttpContext (I think), I am unable to do this. When ...
4
votes
2answers
2k views
ASP.NET 2.0 : Best Practice for writing Error Page
In asp.net 2.0 web site, what is the best way of writing Error page. I have seen following section at following location:
Web.Config
<customErrors mode="RemoteOnly" ...
8
votes
1answer
4k views
BeginRequest-like filter in MVC 3?
I have some code in my application that I need to execute on every request, before anything else executes (even before authentication). So far I've been using the Application_BeginRequest event in my ...
5
votes
3answers
9k views
ASP.NET MVC doesn't call global.asax' EndRequest
I am trying to perform some actions at the end of every request.
I changed the Application_Start() that is generated when created new project to make a test:
protected void Application_Start()
{
...
10
votes
3answers
9k views
Difference between Application_Start and Application_OnStart
I'm in the process of adding ASP.NET MVC code to a preexisting ASP.NET Webforms project. The various tutorials suggest adding routing to a method called from Application_Start() in Global.asax. My ...
5
votes
3answers
3k views
IIS Recycle Global.asax
Is it possible to catch an recycle event in the global.asax?
I know Application_End will be triggered but is there a way to know that it was triggered by a recycle of the application pool?
thx, ...
14
votes
2answers
11k views
Application_End global.asax
Can anybody tell me when Application_End is triggered in a lifecycle of an application? When all sessions are ended, will Application_End be triggered automatically? + Are there any other reasons why ...
8
votes
2answers
5k views
Why HttpContext.Current.Session is null in Global.asax?
I'm using VS2010 and created a simple asp. web forms application, using Development Server to test it.
I try to store user data - queried from sql server - in the session, since I don't want to access ...
7
votes
4answers
918 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 :)
5
votes
2answers
9k views
Where is the Global.asax.cs file?
I am pretty new to asp.net jargon henceforth, this question seems to be very childish.
I am using VS 2008. I have created a new Asp.net web site project from File->New->Website->Asp.net Website.
Now ...
4
votes
3answers
3k views
Log4Net, ThreadContext, and Global.asax
I am working on a Log4Net configuration that will log all unhandled exceptions. I need certain properties, based on user, to be added to each log entry. I have set this up successfully in the ...
3
votes
2answers
1k views
mvc route actionlink url use name instead of id
I think I already asked this but the solution didn't really made sense. Anyway, I have ActionLinks on my views like this:
foreach( var item in Model){
<%: Html.ActionLink(item.Name, "Details", new ...
2
votes
2answers
2k views
Application_Error does not fire?
In Webform1.aspx.cs:
protected void Page_Load(object sender, EventArgs e)
{
throw new Exception("test exception");
}
In the Global.asax.cs:
protected void Application_Error(object sender, ...
1
vote
2answers
949 views
Asp.net MVC Let user switch between roles
I'm developing a complex website with users having multiple roles. The users are also coupled on other items in the DB which, together with their roles, will define what they can see and do on the ...
0
votes
2answers
1k views
Creating the Timer in Global.asax file
I would like to execute a storedprocedure for evey one hour and have to load the dataset in applicaion(dropdrown or some asp.net controle) by creating the timer in Global.asax file.
Am very very ...
4
votes
2answers
4k views
.NET Application_BeginRequest - How to get User reference?
I'm trying to get a reference to the user object in my Global.asax file's Application_BeginRequest. I'm using the property Context.User but I get a NullReferenceException. Is it possible to get a user ...
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
...
2
votes
3answers
4k views
what alternatives are there to using global.asax?
I am using my own custom authentication with IIS, and I want the server on every page load (no matter what type of file) to first check the Application variable to see if the user is authenticated and ...
9
votes
4answers
2k views
Understanding routing in Global.asax (asp.net-mvc)
In Global.asax what does the following signify?
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
6
votes
1answer
295 views
F# Global.asax — language not supported?
Im trying to write a simple F# ASP.Net MVC app
Ive added the Global.asax as follows
<%@ Application Inherits="WebApplication.Core.Global" Language="F#" %>
then in a separate referenced ...
4
votes
2answers
5k views
Why does Session_Start in Global.asax.cs cause performance problems?
When I create an empty Session_Start handler in Global.asax.cs it causes a significant hit when rendering pages to the browser.
How to reproduce:
Create an empty ASP.NET MVC 3 web application (I am ...
1
vote
2answers
5k views
asp.net on session timeout redirect to home page
i have web app and on session timeout and user interaction on the page, this needs to redirect to home/landing page
solutions found on the net
1) Session check in page_load of all the aspx pages of ...
7
votes
1answer
2k views
<machineKey decryptionKey=“AutoGenerate”… being ignored by IIS. Won't invalidate previous session's cookies
(See question below for more context):
Are there any situations in which
<machineKey
validationKey="AutoGenerate,IsolateApps"
decryptionKey="AutoGenerate,IsolateApps"/>
in ...
5
votes
1answer
2k views
How to catch HttpRequestValidationException in production
I have this piece of code to handle the HttpRequestValidationException in my global.asax.cs file.
protected void Application_Error(object sender, EventArgs e)
{
var context = HttpContext.Current;
...
5
votes
2answers
897 views
How can you hook a SharePoint 2007 feature into the Application_Start of a site?
I was wondering if there is a good way to hook into the Application_Start of a SharePoint 2007 site when developing a feature? I know I can directly edit the Global.asax file in the site root, but is ...
4
votes
3answers
829 views
Check for a static file during Application_BeginRequest?
I have a Global.asx file that needs to do custom authentication, auditing and profiling stuff. This is needed because it supports a SAML based SSO system and needs to override the normal .Net ...
4
votes
3answers
460 views
Can you run a “service” that runs a scheduled task from an ASP.Net project?
I built a Windows Service for a client of ours that collects all the changed/new rows from the database, turns them into a CSV and FTP uploads them somewhere every night. Now as it turns out they ...
2
votes
3answers
483 views
Get names of Online users connected to a Server
I am new to asp.net. I have gone through this link which has shown how to count the online users connected to a server using asp.net. (which is working when I tried)
My question is: What should I ...
2
votes
3answers
3k views
Global.asax.cs and Static variable
In a WCF Service, I need to create a variable which should be accessible anytime from anywhere. All methods of my service need to have access to that data and I can load it only once. So I though ...
2
votes
2answers
3k views
Global.asax Application_Error doesn't work with Integrated Mode
Application_Error doesn't work with Integrated Mode but does work with Class Mode.
I would to transfer request to error page using both Integrated Mode and Class Mode. Can this be done or I have to ...
1
vote
0answers
298 views
Overlapped Recycle and Application_Start
I have an asp.net web app using AppFabric for distributed caching. On Application_Start I initialize my connection to AppFabric. This generally takes milliseconds which is perfectly acceptable. On ...
0
votes
2answers
2k views
How to get without “default.aspx” url?
I implemented a following code in Global.asax file of my web application.
void Application_BeginRequest()
{
string rule = ConfigurationManager.AppSettings.Get("WwwRule");
HttpContext ...
7
votes
1answer
3k views
Global.asax PostAuthenticateRequest binding
How can I use the PostAuthenticateRequest event of Global.asax? I'm following this tutorial and it mentions that to use the PostAuthenticateRequest. When I added the Global.asax event it created two ...
6
votes
4answers
2k views
How do I log unhandled exceptions in ASP.NET MVC?
Here's what I'm trying to do in my Global.asax.vb:
Public Class MvcApplication
Inherits System.Web.HttpApplication
Shared Sub RegisterRoutes(ByVal routes As RouteCollection)
...
5
votes
5answers
13k views
Where is global.asax.cs in Visual Studio 2010
I don't have a Global Application class code-behind any more inside my installed templates. All I have is Global.asax. I find more comfortable working with Global.asax.cs.
Why am I not seeing it ...
3
votes
3answers
5k views
ASP.NET MVC Error Logging in Both Global.asax and Error.aspx
I'm creating an ASP.NET MVC application. I need to handle exceptions in two places.
Global.asax.vb file:
Public Class MvcApplication
Inherits System.Web.HttpApplication
...
Sub ...
2
votes
5answers
227 views
When does HttpRequest get created?
In my MVC web application, I'm checking Request.IsLocal to see if the application is running on my machine--if it is, I set a Global static variable which tells the rest of my application that I am in ...
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):
...
2
votes
1answer
593 views
Register RazorViewEngine only for C# (only for .cshtml files)
I am only using RazorViewEngine on one of my ASP.NET MVC 3 applications and I cleared Web Forms view engine out with following code inside Application_Start method of my Global.asax.cs file
...
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. ...
