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
15 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
27 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
141 views
ASP .Net custom route not working
ASP .Net custom route not working.
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
//default route
...
0
votes
1answer
19 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.
...
7
votes
6answers
1k views
ASP.NET MVC Url Route supporting (dot)
I hope that you can help me with the below problem.
I am using ASP.NET MVC 3 on IIS7 and would like my application to support username's with dots.
Example: http://localhost/john.lee
This is how my ...
0
votes
2answers
312 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 ...
1
vote
1answer
36 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
38 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 ...
1
vote
2answers
237 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>
...
0
votes
1answer
45 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
0answers
152 views
ASP.NET Web Forms Routing - with default route values
I am using Routing in ASP.NET Web Forms. In Global.asax, I have:
void RegisterRoutes(RouteCollection routes)
{
Dictionary<string, object> dRouteValue = new ...
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
votes
2answers
52 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
3answers
3k views
what happens with session_start in global.asax if session timeouts?
I have multidomain web application which treats users differently based on URL they use.
I am using Session["data"] to keep information about user and starting this session with Session_Start["data"] ...
0
votes
1answer
37 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
54 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 ...
4
votes
1answer
72 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
0answers
34 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 ...
0
votes
2answers
1k views
ASP.NET Capture and replace output in Global.asax
I need to replace some data that's sent from every page on my site, and I think doing it with Global.asax. This is what I have tried with so far:
void Application_PreSendRequestContent(object sender, ...
2
votes
2answers
25 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 ...
0
votes
3answers
349 views
background thread in asp.net application
i run a background thread in Application_Start() in global.asax
to use it like windows service
but applicaton_end fire when all session is ended in my website
i have a sms Business that work with ...
4
votes
1answer
3k views
could not load type MvcApplication on Global.asax
I copied my MVC3 Razor website using FTP. However, when I type the URL I get an error:
"Could not load type Mynamespace.MvcApplication"
and it shows the problem is with Global.asax:
Line 1: ...
1
vote
0answers
130 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
45 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
75 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 ...
1
vote
0answers
85 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
55 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
57 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
124 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
2answers
337 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 ...
5
votes
3answers
304 views
Why does PreApplicationStartMethodAttribute() not work in SharePoint 2013?
In .NET 4(.5) there is this amazing Attribute: PreApplicationStartMethodAttribute,
I want to use it in SharePoint 2013 so I don't have to edit the app_start method in the global.asax file directly.
...
0
votes
0answers
83 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
166 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
105 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
39 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
134 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
172 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. ...
0
votes
1answer
56 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
193 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 ...
9
votes
10answers
347 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
0answers
117 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. ...
1
vote
1answer
143 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
112 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
50 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
80 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
263 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
71 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
254 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
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", ...
0
votes
1answer
49 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 ...





