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)

0
votes
1answer
126 views

How to pass exception object through query string

void Application_Error(object sender, EventArgs e) { Exception objException = Server.GetLastError().GetBaseException(); Server.Transfer("~/ErrorPage/Error_Page.aspx?objException=" ...
1
vote
2answers
48 views

Application error with file not find?

I took over a asp.net project from my co-worker. When I start running the project, Application_Error() in Global.asax.cs throws an error saying file does not exist. Someone recommended using ...
3
votes
1answer
249 views

Can something in the global.asax or web.config that can prevent validationsummary message box

I have a problem with a web application using validation summary with the attribute "ShowMessageBox" = true. The problem is that the message box isn't showing and the code is pretty simple: <html ...
5
votes
2answers
364 views

Can we unit test global.asax in asp.net?

I am doing unit testing. I have no idea that how to unit test global.asax in asp.net. Is global.asax in asp.net come under unit test coverage ? Also there is application installer class which contain ...
0
votes
2answers
64 views

Delete a record as ending a session

I want to delete a record from data base as a user close the browser. the record which i want to delete is belong to the user who close the browser or log out. I write this code in global but it ...
1
vote
2answers
258 views

Why aren't the Server and X-Powered-By headers being removed?

My ASP.NET 4.5 app is being deployed to shared hosting so I do not have access to IIS settings. To remove the X-Powered-By header, I specify in web.config: <system.webServer> ...
1
vote
2answers
226 views

Method invocation is skipped in C#?

I have this simple code : void Application_BeginRequest(object sender, EventArgs e) { Trace.Write("Exception Handling", "......"); } However re-sharper scream (no-error only ...
0
votes
1answer
329 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 ...
0
votes
2answers
370 views

global_asax does not exist in the namespace ASP

hi i added a class file to global.asax.. Code inside global_asax : <%@ Application Language="C#" CodeFile="Global.asax.cs" Inherits="Global" %> Code inside global.asax.cs: public partial ...
3
votes
2answers
216 views

Refering jQuery in cshtml using HTML helper

I usually refer a jQuery using: <script src='@(Url.Content("~/JavaScript/jquery.maskedinput-1.2.2.js"))' type="text/javascript"></script> I refer the same Jquery in many Pages. Any ...
0
votes
0answers
52 views

I had added TImer from global.asax now i wan to Stop that timer please help its 5 sec email code i need to stop urgent

I had Created Timer in global.asax and created mail function for every 5 sec now to stop i deleted global.asax bt it is still sending email every 5 sec please help
5
votes
3answers
233 views

How to ignore logging errors for images in global asax

I have an error handler in my global.asax as follows; Sub Application_Error(ByVal sender As Object, ByVal e As EventArgs) ' Code that runs when an unhandled error occurs Dim ex = ...
2
votes
1answer
339 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
0answers
102 views

When does Global.asax run cache?

I have an ASP.NET website with global.asax. I'm doing VaryByCustom caching by overriding GetVaryByCustomString. It isn't going well. I'm interested to know, in terms of Page life cycle, when does ...
0
votes
1answer
51 views

Redirect 301 works fine?

I added into my global.asax a 301 redirect from subdirectory to root .. www.informarea.it/blogengine to www.informarea.it When I write in browser the name of the site: for example: www.informarea.it ...
0
votes
0answers
19 views

Global.asax deployment to commercial sites

Pretty simple question I think - I'm building a commercial web app that uses Global.asax events. Where does the assembly get built? It's not in the site's bin folder. I am using IIS local hosting - ...
0
votes
1answer
141 views

Custom cache not caching querystring

I'm using custom cache on a page, leaving a timestamp to follow cached versions. I have <%@ OutputCache Duration="1200" VaryByParam="None" VaryByCustom="myCache" Location="ServerAndClient" %> ...
2
votes
3answers
500 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 ...
1
vote
1answer
250 views

Redirect Does not work in Global.asax publish time

I add custom error exception in Global.asax. It works on debug mode but when I publish it in IIS 7.0 it does not work: Global.asax: void Application_Error(object sender, EventArgs e) { // ...
0
votes
1answer
68 views

Timer in Global.asax

I would like to start a timer when the application is started in IIS. Do you think that the best place is in Application_Start in Global.asax? Thank you very much.
2
votes
1answer
557 views

Umbraco 4.10 + Extending Global.ascx

Does anyone knows how to extend Global.ascx in umbraco 4.10 onwards? I want to register custom routes to my application. I have added code behind to the global.ascx and inherited as follows: public ...
0
votes
2answers
601 views

Value cannot be null. Parameter name: username. Starting .net application

When I start the application from Visual Studio 2010 the following error shows up: Value cannot be null.\r\nParameter name: username I can see this error in Global.asax.cs in the parameter ...
0
votes
1answer
516 views

how to hide aspx extension(URL rewriting) using global.asax in asp.net

I am working on URL rewriting using global.asax in asp.net 3.5, URL:http://localhost:65278/URL_EG2/SubFolder/Home.aspx I want it to rewrite as:http://localhost:65278/Home How to acheive this? Can ...
0
votes
1answer
101 views

In MVC3, How to get the TLD with MapRoute?

I have many host names on IIS that point to the same MVC3 app. www.domain.com www.domain.co.uk www.domain.net ... How can I get the top level domain (es. ".com") when I set a map route like the ...
1
vote
2answers
341 views

Inherited Global.asax and Application_Start issue

I am trying to inherite a base global.asax class to create my custom global.asax class. But my custome inherited global class does not work properly. Its Application_Start wont been called. Anyone ...
0
votes
0answers
90 views

ASP.NET Global.asax - Adding Last Write Time to CSS, JS and IMG url

How can I add the last write time to CSS, JS and IMG files in url? In Global.asax: Sub Application_PreRequestHandlerExecute(ByVal sender As Object, ByVal e As System.EventArgs) If ...
0
votes
1answer
216 views

Where should Global.asax reside on an ASP.NET MVC 4 solution with multiple projects?

If for example I have a solution with two projects: Project.Core and Project.Web. Now I set Project.Web as the startup project. Shall global.asax reside on the root of this project (Project.Web)? If ...
2
votes
2answers
74 views

Rewrite on IIS7 not working correctly with “www”

I have problem with my redirection rule. I want my pages will have the "www" prefix. It works on some pages, while on other it simply not doing anything. This is my rule: <rule name="WWW ...
0
votes
0answers
55 views

System.NullReferenceException in context.Request.Url using VS development server

Need help... Im having 'System.NullReferenceException' error in this code: ((HttpApplication)sender).Context.Request.Url within Application_AuthenticateRequest It only happened after installing VS ...
1
vote
1answer
133 views

In MVC3 how to get the top-level domain when begin a request?

My MVC3 application hosts many domains as www.mysite.com www.mysite.de www.mysite.co.uk ... Then, I have to get the top-level domain from the url (for example ".com") when begin a request; I have ...
0
votes
1answer
127 views

'the directive control is unknown' after adding a new Global.Asax file

I've added a brand new 'Global.asax' file to my web project and got the following error when trying to build it: 'the directive control is unknown'. All the solutions I've read about in the web is ...
1
vote
1answer
230 views

Can't find Controller in MVC 3 project - NotFound error

I have this global.asax file with this code: routes.MapRoute("Invitations", "api/invitations", new { controller = "Invitations", action = ...
1
vote
1answer
588 views

Error executing child request for

In my MVC3 application I'm getting the above mention error when I try to handle a maximum request exceeded error. I'm handling the exception at the application level. I'm trying to redirect to an ...
0
votes
1answer
896 views

HTTPModules and Global.asax -— ASP.NET Page Life cycle

I have read the beautiful article about Asp.Net Page life Cycle http://www.codeproject.com/Articles/73728/ASP-NET-Application-and-Page-Life-Cycle. My understanding is the request passes through ...
0
votes
2answers
1k 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
227 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
156 views

Using Global.asax file to load user preferred interface language

I am working on a multi-lingual ASP.net web application using C# and .Net 4.0. The web application allows the user to save his preferred language for the user interface. There is also a provision to ...
0
votes
1answer
180 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
0answers
97 views

Failed to compare two elements in the array

I just got this error. All that has changed is I upgraded to windows 8. When I run my asp.net 3.5 app I get in the global.asax, I get Failed to compare two elements in the array. I have no clue ...
0
votes
1answer
409 views

Global.asax Application_Start Get Action Url / RedirectToAction?

On application start I am checking app versions from the assembly against a value stored in the web.config. If the versions differ, I want to trigger the default installer. So I need to get an Action ...
0
votes
1answer
379 views

Not all errors catched by global.asax C#

I am attempting to catch all errors except '404-File not found' error in global.asax file and writing in to a text file in server,But lot of errors gets missed ,like FormatException Error,Sessionout ...
1
vote
2answers
179 views

asp.net mvc3 can Global.asax accept controller-less and action-less parameters?

I would like to have a default parameter for the URL so that when the user sends an argument on its own, such as: http://mysite.com/argument that argument gets (invisibly) routed first to ...
1
vote
1answer
68 views

Controller MVC3 link to Folder/Controller/View

I currently got a problem with the namespaces I added this into my global.asax: routes.MapRoute( "Admin", "Admin/{controller}/{action}/{id}", new { controller = "Home", action = "Index", id = ...
0
votes
0answers
59 views

aspx wired error caught by Application_Error method [closed]

I have asp.net website, in Global.asax page, I have a method like this protected void Application_Error(Object sender, EventArgs e) { HttpContext ctx = HttpContext.Current; ...
0
votes
1answer
85 views

MSBuild : Global Asax not Included

We have an MSBuild task that runs on our server after pulling down code as an automated build server. Our problem is that when we deploy the site from the output of MSBuild, there are a few files ...
2
votes
0answers
140 views

HttpModule and Structuremap initialization

I have a custom HttpModule that works fine using the built-in VS server, but will not run from the IIS 7.5 server that I have set up. The c# file doesn't even get called. The module is included in ...
0
votes
1answer
90 views

Avoid handle 404 on other requests than main

I used the method below in the EndRequest method from global asax. I get a HTTP 404 error even from image request or other requests. The point is that I want to check only for the first request/main ...
1
vote
1answer
156 views

Global Class or Method to add THEAD and TBODY to GridVIew Site-wide automatically

I'm kinda new to C# and DotNet but I'm tryig to resolve an issue. I would like to create class that would reside in a global asax or as a cs file that can be called by a GridView's PreRender trigger ...
1
vote
1answer
317 views

Implemented IHttpModule class events does not firing, SharePoint 2010 issue

I'm developing sharepoint 2010 web appliation. I want to handle some Applicaton events (Begin_Request, End_Request, Application_Start) in manner of classic asp.net way through the using Global.asax ...
0
votes
0answers
200 views

swfupload: Cookie not set in Application_BeginRequest

I have a ASP.NET Web Forms page that uses swfuploader and following the suggestions mentioned here: Uploadify (Session and authentication) with ASP.NET MVC The thing is this code works in one server ...

1 2 3 4 5 13