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.

learn more… | top users | synonyms (1)

1
vote
1answer
354 views

Global.asax is not publishing and event are not firing in Global.asax

I am developing ASP.NET web application and for unhandled exception i am making use of Global.asax file Where I wrote a logic to write the error logs as Sub Application_Error(ByVal sender As ...
0
votes
1answer
189 views

MapPageRoute() vs. Site's Root Directory Repeatedly Loads Target Resource

I have the following line in Global.asax.cs: routes.MapPageRoute( "Resorts", "{resortname}", "~/Pages/ViewResort.aspx" ); The intention is to allow a request like: www.mysite.com/some-resort-name ...
1
vote
1answer
139 views

how to know when application level variable is changed asp.net

I have application level variable stored in a cache in global.asax file: void Application_Start(object sender, EventArgs e) { Application.Lock(); List<MyClassName> ...
1
vote
1answer
308 views

store List in Global.asax

We can store application level strings in a global.asax file like: Global asax: void Application_Start(object sender, EventArgs e) { Application.Lock(); Application["msg"] = ""; ...
0
votes
1answer
49 views

Losing custom headers on HTTP 500

As part of Global.asax's BeginRequest event I conditionally add a CORS header based on a web.config value. HttpContext.Current.Response.AddHeader("Access-Control-Allow-Origin", "*"); I lose this ...
0
votes
1answer
191 views

Any way to get more info from unhandled exceptions caught by Application_Error in Global.asax?

In production, I have the Application_Error event handled in Global.asax to log (and email me) details of any uncaught exceptions that sneak through: void Application_Error(object sender, EventArgs ...
0
votes
1answer
150 views

Something like global.asax in WPF

I have app with lot of windows and Im just curious is there (in WPF) something like global.asax which was in ASP.NET? I just want to clean some data after somebody shutdown application with alt-f4 for ...
0
votes
1answer
643 views

Rewrite URL of ASMX Web Service

I'm trying to map an incoming URL from an ajax request to a web service method in the Global.asax. The web service is in this path /ajax/BookWebService.asmx, it has 2 methods GetListOfBook and ...
2
votes
1answer
187 views

Modifying global.asax on NuGet-Package Install

I would like to create a NuGet package for the first time, and I need to add a line to the end of the Application_Start() function of global.asax when installing the package, and of course delete this ...
4
votes
3answers
872 views

Handling exceptions in global.asax ASP.NET MVC

I have code which is catching all exceptions in Global.asax protected void Application_Error(object sender, EventArgs e) { System.Web.HttpContext context = HttpContext.Current; ...
1
vote
3answers
1k views

Global.asax.cs is not visible at the server

Running under Server08 | IIS7. I have a website project and am in the habit of hand editing the Global.asax.cs at the deployed site many times in the past. Recently I've found that only the ...
0
votes
2answers
506 views

Where to implement Global.asax methods

I am working on an ASP.Net application and currently the Global.asax contains the usual 5 methods: Application_Start Application_End Session_Start Session_End Application_Error However, I needed ...
7
votes
2answers
1k views

What pattern is being done in the Global.asax.cs file in ASP.NET MVC 4?

I have never come across this pattern of code right here. Would anyone care to explain it to me? (Or is there even a pattern here? Is there a reason why this was done like this? What benefits is this ...
1
vote
1answer
321 views

How to redirect subdomain to www domain using global.asax MVC4

I have a website under IIS7 with catch all subdomain as *.mydomain.com but some sites randomize subdomains like: www2.mydomain.com w.w.w.mydomain.com etc.mydomain.com Any subdomain works perfectly ...
0
votes
1answer
201 views

Application Restart for folder deleted,added,updated

Modifying, adding, or deleting certain types of files within the application's known folders will cause the application to restart.But when Log file in application is updated,why application is not ...
0
votes
1answer
272 views

Send code from Global.asax file to default.aspx

I have a default.aspx page that sometimes will cause an exception that gets caught in the Global.asax file. How do I send data back to my default.aspx page to change the HTML output without doing a ...
0
votes
1answer
535 views

Is Global.asax file in App_Code.dll

How do I deploy a Global.asax file? Does it get compiled in release mode to the App_Code.dll?
0
votes
1answer
555 views

MVC3 Error message globalization

I'm really lost trying to create custom generic validation messages for my MVC3 application. I read many tutorials and the biggest part of them suggest one of these options: Create an ...
1
vote
1answer
217 views

Why can't I add my custom model binder in my global.asax folder?

I see examples all over the net of people setting up their custom model binders like this: // global.asax protected void Application_Start() { ModelBinders.Binders.Add(typeof(YourModel), new ...
0
votes
0answers
226 views

MVC4: SQL Compact deployment in Visual Studio 2012

I created the sdf file and put it under App_Data. I created tables in Server Explorer. I saw that after doing this, downloading the EntityFramework.SqlServerCompact package from NuGet will ...
0
votes
1answer
867 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
408 views

Global.asax URL rewriting

The following works fine on my local host, but not on the server. I keep getting a page not found error. Any ideas? I also have a custom mime type setup in the web.config but that should not matter. ...
1
vote
1answer
466 views

Deleting temp files from server on session end

In my app I modify an image based on the users selected options. Each time I modify the default image I save and name it as user's ID & date.now.tostring("yyyyMMddHHmmssf") to fix my problem with ...
0
votes
1answer
372 views

HttpRuntime.Cache does caching on client/server side

Does the HttpRuntime.Cache which I declared in the global.asax file in asp.net web application does caching on client side or server side? HttpRuntime.Cache["Key"] Also is there any chance that we ...
1
vote
1answer
158 views

Why can't i access a (static) method or a property which in Global.asax from APP_CODE folder?

I can access the function in the Global.asax from Asp.net web pages(.aspx) (i've added ClassName="Global" and mark my method as static) i can't access the class Global it from my code in APP_Code ...
0
votes
3answers
404 views

How to Prevent Session Value Reset of Global.asax file in asp.net?

I have about 10 Session variable for storing the File Download Counts of each different 10 Categories wise. I dont know why? but my session variable that is set into Global.asax get RESET ...
1
vote
1answer
313 views

Changing a label text in Global.asax

I have a message zone defined in the master page (an update panel with a label inside). I want to handle all the exceptions globally and I thought I can catch them in the Application_Error event in ...
0
votes
2answers
149 views

Change default view folder for custom Http404 error page

I want to custom error pages in my asp.net mvc3 website. So, I found this very useful post: Custom error pages on asp.net MVC3 and it works well However, my Http404.cshtml file isn't in the Views ...
1
vote
1answer
130 views

Static class member is not shared between different users on different IP

I have written a static class and suppose to share it's members between all sessions. it works for all the browsers running on the same cumputer but the data is not shared between different users from ...
0
votes
1answer
135 views

Possible to check if Application_Start Event fired?

I have some code that I cache on Application_Start Event and then I use it in a master page code behind file. if my cache object is empty then I log it into my error log saying it was empty. I was ...
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. ...
1
vote
1answer
153 views

TeamCity Build Task to autostart ASP.NET Website

I've got TeamCity setup as my CI solution to build, package, and deploy (via MSBuild/Web Deploy) my ASP.NET MVC 3 web application. Works great. However, in the Application_Start event for my ...
1
vote
2answers
153 views

Where is the proper place to put this authentication logic?

We have an old classic asp app that is used to manage and launch our other web applications. The way it launches apps is as follows: <form name="frmMain" action="http://xxxx/mvc3app/Index" ...
9
votes
2answers
616 views

How to avoid passing slow Application_Start times to the end users in ASP.NET

I have quite a slow Application_Start due to having a lot of IoC stuff happen at start up. The problem I'm trying to solve is, how do I avoid passing that start up time to the end user? Assumptions ...
0
votes
1answer
589 views

global authorization not working - results in blank page rendered

I am trying to implement a very basic login scheme for my MVC3 site. If I understand correctly, instead of adding the [Authorize] markup to each of my controller classes, I should be able to simply ...
0
votes
2answers
775 views

How to access value from code behind in global asax

In my page I'm regenerating session id on every button click to go to the next page. I've already saved username in my session variable (session["uname"]=txtusername.text) in the time of log in. But ...
1
vote
1answer
328 views

Initialize EF DbContext database within Ninject module

I have an InDocDbContext: DbContext and an InDocDbContextInitializer: DropCreateIfModelChangesInitializer that "has been taught" to seed some initial data into the database. I am trying my best to ...
0
votes
2answers
211 views

If htm or html page doesnt exist then check if aspx page exists

I have moved my website from using .htm/.html pages to aspx pages. Some existing websites/bookmarks etc will be referencing the old files instead of the aspx files so i want them to be sent to the ...
-2
votes
1answer
372 views

Calling a stored procedure from global.asax file

Hello I had developed the below code to save the dataset in Global.asax file. To consume that in webpage.aspx.vb file, now it is working fine. In the similar way, how could I call the stored ...
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 ...
0
votes
0answers
99 views

How to get Cassini (and others) to always call Application_BeginRequest when requesting a URL?

I have a web application which uses a custom framework. It relies on getting an Application_BeginRequest to parse a URL and serve a proper page by Response.Output. Note it's a bit of an experiment and ...
32
votes
4answers
14k 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 ...
2
votes
1answer
174 views

Global.asax only run on debug mode

I have a redirect on global.asax application_error function. When i'm debugging, every exception is treated by the function. When i am running application on web server, appears the error default page ...
2
votes
1answer
645 views

Add Application Start event handler manually in constructor

I must be blind - in Global, as an alternative to the application AutoEventWireups, it seems that events are exposed for most of the underlying Application events (BeginRequest, AuthorizeRequest, ...
0
votes
0answers
392 views

Simulate a Windows Service to create automation on server. Application_Start doesn't appear to fire?

I am trying to set up some automated functions to do various things, having been pointed in the direction of this: ...
1
vote
1answer
155 views

LightSwitch WebApplication not entering Global.asax file

How can i get my lightswitch application to enter the global.asax file? In the ServerGenerated project i've implemented an own login screen for the users. Further more i added the global.asax file to ...
2
votes
1answer
130 views

How does global.asax function in server farm?

I'm confused as to how the global.asax file would run in a server farm. Does each server have its own instance running or is it a shared instance. For example in my global.asax in the ...
0
votes
2answers
319 views

Why Does Hit Counter(Application Variable) from Global.asax set to '0' after some time in ASP.NET?

Im having about 50 Application Variables for Each Search DataBases. Total 50 SearchDB which are querid from Single Search.aspx page depending upon the QuerString passed in URL it connects to Specific ...
3
votes
2answers
414 views

Application_Error firing even for handled exceptions

I have some code to display a button if a URL exists: try { string dashboardURL = Config.RootUrl + "/Dashboard/Default.aspx"; WebRequest req = WebRequest.Create(dashboardURL); WebResponse ...
0
votes
1answer
286 views

How to Set the Total Visitors count in ASP.NET for different Databases that are accessed from same Page?

I am having a Search.aspx page which is going to display the records from user entered search criteria. It get the connects to the Specific Database amongst 50 SQLServer Databases. Depending upon the ...

1 2 3 4 5 13