Tagged Questions
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.
23
votes
2answers
4k 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 ...
17
votes
4answers
5k 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 ...
11
votes
1answer
148 views
Securing website assemblies with new code security model
I'm currently on a project where we are creating a MVC site. The site needs to use code access security, due to the fact that third party dll's needs to be plugged in, to provide custom functionality. ...
11
votes
9answers
11k views
log4net with ASP.NET 3.5 problems
I'm having some trouble getting log4net to work from ASP.NET 3.5. This is the first time I've tried to use log4net, I feel like I'm missing a piece of the puzzle.
My project references the log4net ...
10
votes
4answers
15k 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 ...
8
votes
5answers
448 views
How to render an asp.net WebForm page from Global.asax?
for one reason or another I'm messing around with a "minimalistic" ASP.Net just for fun. I've disabled a lot of things and am attempting to reimplement things. One thing I can't quite figure out is ...
7
votes
2answers
3k 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 ...
7
votes
4answers
1k views
Understanding routing in Global.asax (asp.net-mvc)
In Global.asax what does the following signify?
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
7
votes
7answers
23k 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 ...
6
votes
1answer
133 views
Does Application_OnStart in global.asax work with cached pages?
I'd like to implement a counter in global.asax so I can do a giveaway on my site every xxx visits. The question is, if my page is served from the ASP.NET cache, will the counter still update?
Thanks ...
6
votes
1answer
1k 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 ...
6
votes
4answers
1k 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)
...
6
votes
2answers
720 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 ...
5
votes
3answers
128 views
How to make website only be able to opened from a specified IP addresses
I have got a website, which i want to be opened from some specified IP addresses.
I know how to get ip address in asp.net, but i dont want this check to be perform on page init or in masterpage for ...
5
votes
1answer
1k 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 ...
5
votes
3answers
132 views
Confused over global.asax?
I have a class called Global that derives from HttpApplication.
Oddly, I see a lot of methods inside Global that look like:
void Application_Start(object sender, EventArgs e)
{
}
The code is ...
5
votes
1answer
114 views
Rate Limiting with ASP.NET and the global.asax
What is a good simple way to only allow one request per IP per second using ASP.NET's global.asax file? Is there something else built-in to ASP.NET that I'm not thinking of?
If possible I'd like to ...
5
votes
7answers
3k 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?
5
votes
1answer
247 views
Strange behavior of nullable Enum types
I am using Global.asax to perform logging at the end of each request via the Application_EndRequest event. However, I am seeing some odd behavior of certain values stored in the ...
5
votes
2answers
3k views
Application_Start not being hit in ASP.NET web app
I'm trying to debug something in the global.asax.cs file in an ASP.NET web app and have set a breakpoint in the Application_Start() event however that event is not getting fired when I start the web ...
5
votes
2answers
2k views
Unhandled Exceptions with Global.asax
I am emailing unhandled exception details from global.asax. How can I get the path and/or filename of the aspx file or assembly file where an exception was not handled.
This info was showing up in ...
5
votes
2answers
1k views
What's the performance difference between HttpModule and Global.aspx?
I have made a web app where I am using a module which redirects without "www" urls (http://example.com/) to with "www" urls (http://www.example.com/). But as I am on shared hosting server, where I ...
4
votes
1answer
537 views
Captcha control not working with url-routing (ASP.NET 4.0 WebForms)
ASP.NET 4.0 C# WebForms
I have route.Ignore("{resource}.axd/{*pathInfo}"); in my global.asax for my ajax to work correctly.
The control is a "MSCaptcha".
It shows the path in sourcefile ...
4
votes
3answers
209 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 ...
4
votes
1answer
171 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
1answer
457 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;
...
4
votes
2answers
350 views
how to reload RouteTable when web page collection has changed?
In my Global.asax file on Application_Start I create a certain number of routes in RouteTable.Routes by looping through a list of web pages collected from a database. This works fine, all routes are ...
4
votes
1answer
1k 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 ...
4
votes
3answers
629 views
How to access Global.asax static members?
If we declare a static variable in Global.asax then how to access it inside an ASP.NET page ?
<script runat=server">
public static object myObject = new MyClass();
// ...
4
votes
3answers
290 views
Best practice for storing a singleton instance in ASP.NET application
If we have a singleton class like LoadBalancer and need one instance per ASP.NET application, then where to store it ?
Currently I use Application.Add("LoadBalancer", LoadBalancer.Instance) in ...
4
votes
3answers
774 views
Application_error function intermittently catch “File does not exist”
I am using Appilcation_Error event for handling the exceptions and it catches almost all exceptions correctly. However in some pages it catches with some exception "File does not exist" and I am not ...
4
votes
2answers
3k views
ASP.NET MVC routing conflict - null value for input variable
I'm at a loss as to why my routes are conflicting. I have these in my Global.asax file:
routes.MapRoute(
"CustomerView", "{controller}/{action}/{username}",
new { controller = ...
4
votes
3answers
2k 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 ...
4
votes
2answers
2k 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 ...
4
votes
3answers
2k 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, ...
4
votes
2answers
5k 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 ...
4
votes
7answers
5k views
How do I access properties from global.asax in some other page's code behind
Imagine I have a property defined in global.asax.
public List<string> Roles
{
get
{
...
}
set
{
...
}
}
I want to use the value in another page. how ...
4
votes
1answer
809 views
Application_Start works fine on workstation, is not called when deployed
I have an application that works great on my development workstation but fails when the application is deployed to the live environment. It seems that Application_Start is not being called in the ...
4
votes
4answers
3k 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 ...
3
votes
3answers
58 views
ASP.net c# globally available object
How would I add a Stack object into my global.asax so it's accessible by the entire application? At the moment I have:
void Application_Start(object sender, EventArgs e)
{
// Global vars
...
3
votes
1answer
92 views
Using Trace within Global.asax
I'm struggling to output the messages written via Trace.WriteLine within the Global.asax, they don't appear in the Trace.axd.
I've added a WebPageTraceListener and a TextWriterTraceListener as ...
3
votes
1answer
102 views
Managing a maintainance page redirect in an ASP.NET application
I would like to use a configuration in the .config file like this:
<appSettings>
<add key="SiteIsActive" value="false"/>
<add key="SiteNonActive_RedirectTo" ...
3
votes
2answers
531 views
how do you wire up Application_BeginRequest() in asp.net-mvc
i see in global.aspx.cs from an asp.net-mvc project
protected void Application_BeginRequest()
{
}
but when i try to add this to my project, i don't see what is calling this method. I see that ...
3
votes
1answer
148 views
global.asax scope and lifetime clarification
I need to implement several application-level behavior in a project I'm currently working on.
There are several things I need to get my head around:
1. Where and how do I define application level ...
3
votes
3answers
108 views
Redirecting Issues
Let's say I have a website www.mysite.com and I want it to be a multilingual site. Following are the things I wanna achieve :-
1. When a user visits my website, I want to fetch the user's country's ...
3
votes
2answers
207 views
Can I run every ContentResult in a Controller through a universal try/catch elegantly?
I am assuming there is an elegant way to do this, but I do not know what it is. In an application I am working on, I have a lot of ContentResults that return xml. Every action that does return xml ...
3
votes
1answer
1k 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 ...
3
votes
1answer
613 views
Server.Transfer in Global.asax
I have a custom error handler in the global.asax's Application_Error method, when an error occurs I use the following code to transfer user to the error page:
Server.Transfer("/Error/");
However ...
3
votes
1answer
353 views
Global_Asax Application_Error Fired instead of default IIS7 404 Page Not Found Page
I have a Web Application which has Global_Asax and a Custom Error Page. When user tries to enter to an invalid page which doesn't exist, Application_Error is fired in Global_asax and exception is ...
3
votes
1answer
648 views
Class in App_Code not accessible by Global.asax.cs
I've created a new class in App_Code
namespace Site {
public class MyClass {
public MyClass() {
}
}
}
this is my Global.asax.cs
namespace Site {
public class Global : ...