0
votes
2answers
32 views

Application_AuthenticateRequest infinite loop

I recently added Forms-based Authentication to an MVC 3 project. There seems to be a problem between my Application_AuthenticateRequest function(Global.asax.cs file) and my settings for my Web.Config ...
0
votes
1answer
15 views

Read values from non-root web.config file

My site is structured in this way: Root Directory Arcade default.aspx web.config default.aspx web.config I have a method Method1() which accesses: ...
0
votes
1answer
26 views

Application_Start is not firing in IIS

In my web application, I had given some set of coding's in the APPLICATION_START() in Global.asax file. Its been working while I run it on the development server. Whereas, when I hosted it in IIS, the ...
0
votes
0answers
31 views

Is Global.asax used at each server request?

Because a special reason we want to append some headers and set the cache to "NoCache" to all responses of our application. The problem is, that all the responses of the static files (images, css, ...
1
vote
1answer
19 views

ASP.NET Routing a directory request

I have a client that decided they were going to create flyers with a URL they made up. The URL is www.sillyclient.com/golf They SHOULD have used www.sillyclient.com/sports/golf-tourny The correct ...
0
votes
0answers
41 views

slow loading site after IIS restart

When my site is out of service(IIS Restart - Service unavailable), it takes about 10 to 20 minutes to come up my site,In this case,If I put 'app_offline.htm' in the root of the site comes up in just a ...
0
votes
2answers
42 views

How to Application_End the file app_offline.htm is automatically created?

Is it possible? How to Application_End the file app_offline.htm is automatically created or rename old file to 'app_offline.htm' And in the Application_start to remove or rename this file? My goal ...
0
votes
1answer
22 views

Error: Request is not available in this context

I have this code in global.asax void Application_Start(object sender, EventArgs e) { // Code that runs on application startup if (Request.Cookies["mylang"] == null) { ...
1
vote
1answer
31 views

Custom Exception class doesn't work

Why classes that inerithes from System.Exception don't work in try catch block? The following snipped doesn't fire catch block try { int a = 3; int b = 0; int c = a/b; } catch (CustomEx ...
0
votes
1answer
59 views

Global.asax parse error after minor change and revert to previous version

The project in context is: ASP .NET Web Application .NET Framework: 4 Platform Target: x86 IDE: Visual Studio 2010 Ultimate SP1 Multiple projects in solution with ASP .NET being the startup project. ...
1
vote
1answer
68 views

How to check whether Application_BeginRequest is called for static resources like images on real IIS webserver?

We have an ASP.NET 4.0 website, and we use the Application_BeginRequest event in Global.asax to do some smart redirects. When debugging the solution under the local ASP.NET Development Server provided ...
0
votes
1answer
59 views

Capturing a Session variable in Session_OnStart - Global.asa

I'm trying to use the users session to process the code in my global.asa: Sub Session_OnStart sAdmin = Session("Admin") Application("Admin") = sAdmin The Session("Admin") is not empty, ...
0
votes
1answer
64 views

How to detect in Page_Unload, that an unhandled exception has occured already?

Page_Unload is called even if an unhandled exception has occurred. I need to deal with that situation. I have a variable state validation throwing an exception when the variable is not in correct ...
-1
votes
2answers
66 views

SOCIAL_NETWORKING.Global.Application_Start(System.Object, System.EventArgs)' to access method 'System.Web.HttpRuntime.get_FileChangesMonitor()' failed

from some days I am having a peculiar problem with my site www.friendsonline.in which is hosted on Godaddy Server. Everything was normal before.. but now it's showing an ERROR that is Attempt by ...
2
votes
0answers
40 views

Where can I clear non-razor view engines in a Web Pages site?

It is recommended when using the Razor View Engine to unload any others (such as Web forms) in Global.asax like so: ViewEngines.Engines.Clear(); ViewEngines.Engines.Add(new RazorViewEngine()); But ...
4
votes
1answer
101 views

How to write code for global.ascx.cs in dotnetnuke website.?

I need to write some code in application level variable in global.ascx.cs file in my dotnetnuke website to change the url of some pages with querystring management. I got a tutorial from youtube to ...
1
vote
1answer
188 views

How can I handle errors in Global.asax Application_Start?

In the interest of always showing a "friendly" error page to users when they visit a site I have a catch-all at the in the Global.asax page, the majority of errors are handled by filters which seems ...
0
votes
0answers
61 views

application_error not firing for unhandled exception

I am trying to use log4net to log all the unhandled exceptions which occurs in the asp.net website.(v 4.0) I intentionally thrown an error using throw new Exception() but the Application_Error is not ...
1
vote
0answers
145 views

Read HttpContext.Current.Response.OutputStream in Global.asax

How I can read the whole content of HttpContext.Current.Response.OutputStream in Global.asax End_Request? I want to get the text of content that is sent to browser? I tried to google it, but didn't ...
0
votes
0answers
99 views

Handle exception inside Application_Error global.asax

I have code written in global file on Application_Error. I am inserting the error detail in my database. But some how sometimes it is inserting thousand record of same error. Does this mean that ...
1
vote
1answer
188 views

asp.net global.asax.cs and global.asax difference

My global.asax file. It seems like using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Security; using System.Web.SessionState; namespace xxxx { ...
0
votes
0answers
116 views

GetVaryByCustomString in global.asax not called for cached responses in custom HTTP handler

I have the following code in the ProcessRequest method of a IHttpHandler instance: public void ProcessRequest(HttpContext context) { context.Response.ContentType = "text/css"; ...
0
votes
1answer
128 views

Get correct route url data when url routing in asp.net

I am doing route url for SEO. But while I am getting route data, this error occurs; "404 - File or directory not found." URL; ...
0
votes
1answer
71 views

ASP.NET invalid script resource request instead of redirect

Several bots/crawlers are scanning our websites, and I'm wondering if there is something I can change that when a page cannot be found (for example: www.mysite.com/scriptresource.axd) it will be ...
0
votes
1answer
166 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
0answers
141 views

Asp.net web form URL Routing RouteData.Values return weird values

I have an web application, developed on web form architecture. It has a very easy structure which has only one aspx file (default.aspx) and all other contents are being retrieved inside user controls. ...
0
votes
0answers
121 views

images stop loading with URL rewrite - asp.net

All images stop loading after URL rewrite.. In Global.asax under Application_BeginRequest i created custom 3 codes of context.rewritepath for loading pages as per addressbar contents. main mapping ...
0
votes
1answer
127 views

Global.asax - Application_Error - can i get Page data?

void Application_Error(object sender, EventArgs e) { Exception ex = Server.GetLastError().GetBaseException(); string ErrorMessage = ex.Message; string StackTrace = ...
0
votes
2answers
326 views

Call function from code behind in Global.asax

How can i access a control or function from asp page (code behind) in Global.asax? i use below code for background task, this code check for new emails every 60 seconds and i want to update a label ...
1
vote
3answers
371 views

ASP.NET Session_End event not firing

I'm trying to get a database transaction to execute when an ASP.NET session ends (in simple WebForms app on Windows 2008 Server). I realize that many respondents will suggest not to rely on the ...
0
votes
2answers
493 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 ...
9
votes
10answers
382 views

Prevent expiration of individual sessions based on custom conditions?

A website I am working on is very data centric. Some reports take more than an hour to complete. Whenever a user submits a request for a report, a new thread is created which generates the report. The ...
1
vote
1answer
305 views

Response.Redirect doesn't work in Global.asax

I want to redirect to error page when application throw an exception but it doesn't redirect to that page. Here is my code: protected void Application_Error(object sender, EventArgs e) { ...
-1
votes
1answer
377 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 ?
1
vote
0answers
137 views

Application_Error in Global.asax Doesn't Fire

Locally the application error executes fine(catches errors then puts it into a database or sends it via mail). But when I add it up to our website it doesn't execute the codes under ...
0
votes
2answers
188 views

efficient way to manually check if user is logged in or not in asp.net

I am working on a asp.net 3.5 application where asp.net membership is not implemented. If a user logs into the application, i am maintaining a flag in the users table which will be set true if the ...
1
vote
2answers
140 views

Execute some code for each request for ASP.NET (aspx and cshtml )

Is there a way to write some code that would be executed for each request to a .aspx or a .cshtml page in asp.net 4.5 apart from using a base page class. it is a very huge project and making changes ...
0
votes
0answers
106 views

Stylesheet CSS not loading with Context.RewritePath

I am getting problem in loading stylesheet CSS with asp.net VB Context.RewritePath. My project is working on fly subdomain system. Means when we enter this in abcUser.mydomain.com then it will get ...
1
vote
1answer
143 views

What kind of code i can include in global.asax and _AppStart.cshtml in a Web Pages v2 web site?

I have read many articles and documentation and still its not clear to me what i can include in the global.asax and _AppStart.cshtml files. I tried putting simple things like @{ var rlist = new ...
0
votes
0answers
219 views

Global.asax Events not firing in IIS 6

I'm working in an ASP.Net 2.0 C# website in VS2008 on a Win7 box. Everything runs fine in this environment. I've also set up an IIS-7 site that points to my code to allow remote access to the site. ...
2
votes
0answers
540 views

Global.asax.cs events not firing after website publish

I've been looking around online for an answer to this for hours, so I'm hoping someone here can help. I have a WebSite in VS 2010 (.Net 4.0 framework, C #) that has a Global.asax file in the root ...
0
votes
1answer
92 views

Generating Connection string in MVC4 application

I want to use the classes declared in DbContext() class. for that I have also added one more class as SampleData() in my Model folder. I have also added the App_Data folder inside my project. I am ...
5
votes
1answer
45 views

Creating routes from DB records

Current ASAX code (simplified): void Application_Start(object sender, EventArgs e) { // Enable routing RegisterRoutes(RouteTable.Routes); } void RegisterRoutes(RouteCollection ...
0
votes
1answer
59 views

Application_Start timeout?

I have one piece of code that gets run on Application_Start for seeding demo data into my database, but I'm getting an exception saying: The ObjectContext instance has been disposed and can no ...
1
vote
1answer
129 views

Multilingual Website Code Not Working

I have a website that has been working fine until I had to delete some incorrect resource files. However this may not be the reason for it not working. Basically, like most multi-language websites the ...
0
votes
1answer
105 views

What is correct 'Build Action' setting for Global.asax of a WCF Service?

I have a Global.asax file that is part of a WCF Service provect. What is correct 'Build Action' setting for Global.asax for the deployment? (So that it is consumed properly) For example: ...
0
votes
1answer
144 views

Can Global.asax file be ignored if I don't use ASP.NET compatibility for a WCF Service?

Does the setting of ASP.NET compatibility Mode have any impact on the events fired on Global.asax file of the WCF service? Moreover, if ASP.NET compatibility is FALSE, is it possible that Global.asax ...
0
votes
0answers
19 views

Single product instance in QA but different clients

We develop a software product. We have many clients. In our QA environment, we deploy the same product instances, which differs by the configuration in the web.config file. htt://Client1.qa.com ...
2
votes
1answer
109 views

catching specific error in global.asax

I am using Application_Error event in global asax to catch errors and write them to a file. I can see the specific exception in the webpage, but in the log file all I see is a generic error like this: ...
1
vote
2answers
165 views

ASP.NET save respose to file in global.asax

I have a problematic bug in a production system, which I simply can’t find. Sometimes the system produces an invalid link. When the end-user clicks it I get an error report from the system, and the ...

1 2 3 4 5 9