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.
0
votes
1answer
13 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
26 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 ...
1
vote
0answers
18 views
IIS 7.5 URL rewrite module and URL routing in Global.asax for sub-applications
I have a "top-level" web-site, www.ccesd.ac.uk, and various "lower-level" web-sites running off it such as www.ccesd.ac.uk/BritSocAt that are separate sites but share a lot of code. These lower-level ...
0
votes
1answer
41 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
28 views
adding C# objects to a VB web project in Visual Studio 2012. Getting C# templates?
I'm not sure how I was able to do this before in VS 2005, but I recently migrated a VS2005 VB web site to a VS 2012 Web Solution/Project. The solutoin already has both VB and C# Classes in seperate ...
0
votes
1answer
49 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
49 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
29 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
58 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 ...
2
votes
2answers
24 views
Mvc: Exclude id from url
I have the next foreach in my cshtml page, it allows to me iterate in each Model item
@foreach (var item in Model)
{
<div class="date">
@item.pubDate
</div>
<a ...
1
vote
0answers
124 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
38 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 ...
0
votes
1answer
67 views
IIS 7.5 Session times out at 30 minutes regardless of all other settings
We have a ASP.Net MVC Web Application that keeps timing out after exactly 30 minutes.
In the web.config, I set the sessionState timeout value to 500 minutes. After 30 minutes, the session still ...
0
votes
1answer
17 views
Global.asax stoped executing after installing aspnet_regbrowsers.exe utility
After running "aspnet_regbrowsers.exe -i" utility my Global.asax file stoped working when site is deployed on IIS 6 (on dev environment everything is fine). Application_Start and Aplication_End events ...
1
vote
0answers
73 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
45 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
52 views
Getting the web.config request from external class via global.asax
My web-application uses an external class library for certain procedures that I use in many places. One of the things I'd like to add to my library is this configurator class to allow me to encrypt ...
1
vote
1answer
98 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
70 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";
...
2
votes
2answers
149 views
Having problems accessing Public Static variable in Global.asax.cs using HttpContext.Current (C#)
In a Web Project, I've defined a Public Static variable (Store) in global.asax.cs that needs to be accessible throughout the application.
public class Global : HttpApplication
{
public static ...
0
votes
1answer
94 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
37 views
What do we have to do in order to push configurations like URL route mappings to ASP.NET MVC Views to an XML file?
All:
We started off our project using ASP.NET Web Forms.
We decided to integrate ASP.NET MVC 4 into our project.
We would like to leave the existing .aspx ASP.NET Web Form pages as it
is already.
...
0
votes
1answer
51 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
163 views
ASP.NET MVC4 - Session_End - How can I get the currently logged on user's name in Session_End of Global.asax?
My issue is that once Session_End executes in my Global.asax, the HttpContext.Current object no longer exists- probably as expected, I would imagine. So, what I'm trying to do is once the session ...
0
votes
1answer
114 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
108 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
1answer
123 views
Global.asax in Umbraco 6
I had the following in my Global.asax (Umbraco 4.7)
Application_Start
Application_EndRequest
Application_Error
Session_Start
Session_End
Now I have upgraded to Umbraco 6.0.3, which global.asax ...
0
votes
0answers
107 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 ...
1
vote
0answers
42 views
Entity Exception was unhandled by user code in Global.asax
I'm using a Microsoft sample project for entity framework code first;"WingtipToys". All I did was extracting the file and opening the solution. The project got built successfully but I got an error ...
0
votes
1answer
65 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
235 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 ...
0
votes
1answer
65 views
Global.asax Not Writing to Application EventLog Source
I am having an issue in an HttpHandler when an exception gets thrown and handled by Application_Error() within my global application file (global.asax). I am trying to write the exception.Message in ...
1
vote
3answers
227 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
305 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 ...
0
votes
1answer
76 views
Can i use RouteLink to change the parameter of the route depending on link clicked, MVC3
In Global.asax.cs
routes.MapRoute(
"Default", // Route name
"{controller}/{action}/{id}", // URL with parameters
new { controller = "Home", action = "Menu", ...
9
votes
10answers
331 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 ...
0
votes
1answer
372 views
Redirecting to another page from Session_end in global.asax
I need to redirect the user to the login page on session timeout. The issues with Session_End method in the global.asax are:It does not support Response.Redirect or Server.TransferAny attempt to use ...
1
vote
1answer
187 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
200 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
117 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
134 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 ...
0
votes
1answer
46 views
global.asax nlog
I am trying to log the end of a web application(with nlog) and I try to do it in Global.asax Application_End(). Unfortunately the application domain is not available there anymore, and nlog fails ...
1
vote
2answers
124 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
81 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
106 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
155 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
397 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
74 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
44 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
55 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 ...








