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
250 views
Global.asax Application_Start run on bin-folder update?
My question is quite simple..
What if I have an application.. and I start it, and then I assume that Application_Start will be hit..
But what if I during runtime add another assembly to the ...
2
votes
1answer
191 views
On session start redirect - what will referrer be?
I'm using the global.asax's on_session_start() method to catch mobile user agents and redirect to a mobile version of a website. My question is:
On the mobile site if the user is redirected from the ...
2
votes
4answers
217 views
How Can I let the End User Control AppSettings Themselves?
I have a system I've built in MVC 3 that currently provides a yearly submission cycle where the system proceeds through a serious of seven steps tied to dates stored in the web.config as AppSettings. ...
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: ...
0
votes
1answer
340 views
Global.asax - FxCop Warning Conflict CA1811 vs CA2109
I'm working on an ASP.NET project. The projected of course has a Global.asax file. Inside of the Global.asax.cs file, it contains each of the following methods, which [with the exception of ...
1
vote
1answer
391 views
DynamicData RegisterContext error using multiple edmx
Before posting this I made sure to read all suggestion made from SO.
The application currently has two projects one for the web application and one for the Entity Frame work (version 4.0). We are ...
0
votes
1answer
101 views
Global.asax List resets itself
So I just added a system for whitelisting my website.
Here is my Global.asax. I have commented the troubled areas
#region Application Methods
private List<string> _approvedIps = new ...
1
vote
2answers
2k views
Creating an ASP.NET Session Specific Global Variable?
Is it possible to create a variable that is global for each session in ASP.NET? Usually I do this with Session:
Session("my_variable") = 10
But this necessitates casting it every time I want to use ...
0
votes
1answer
140 views
Global API security checks with ASP.Net MVC3
We are planning on using ASP.Net MVC3 to create a JSON API. For handling security we will have something like an API key, or possibly the Username/Password and maybe a timestamp.
I haven't done any ...
1
vote
2answers
520 views
Global.asax not working
Hi i'm working on a project and i'm planning to utilize the global import for System.Data package. after i added the
<%@ Import Namespace="System.Data" %>
in the markup of global.asax
In ...
1
vote
2answers
145 views
Send any invalid url or any url that doesn't exists to a custom controller in asp.net mvc3?
i am new in asp.net mvc3 . i am building my site in which i am facing a problem that i have a controller named Home and a method in it named Index and this index method takes a parameter id now ...
0
votes
3answers
347 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 ...
0
votes
1answer
450 views
Pass response body from IDispatchMessageInspector to Application_EndRequest
I want to log the request parameters and response body that traffics thru my WCF REST service . I can access full response in IDispatchMessageInspector. And I can access request headers and other ...
0
votes
1answer
111 views
rout registration breaks when I change the url in global.asax
The following rout registration works for my asp.net MVC application
routes.MapRoute("TrackingChannels", "TrackingChannels/{action}",
new { controller = "TrackingChannels", action = ...
1
vote
3answers
146 views
Is there something like Global.asax file for ASP web site?
I have a big web site build on ASP. Is there possibility to handle all exceptions in one place? Like Global.asax in ASP.NET application?
Thanks
0
votes
1answer
1k views
Global asax and application_endrequest asp.net
Hello i got some question why when i run my method in global.asax it don't run and when i use IHttp module it is workin any advice.
Maybe its caused of context.PostRequestHandlerExecute += new ...
1
vote
1answer
92 views
Application_OnError not always working
I experience strange problem. We have error handling in global.asax that would redirect user on special page in case if error happened:
void Application_Error(object sender, EventArgs e)
{
...
0
votes
1answer
503 views
asp.net Unable to validate data
I am getting this error, and I know what causes it. There are many causes, but in my case, the issue is that the machinekey differs from server to server (in the web farm) and therefore when it jumpes ...
0
votes
2answers
181 views
why my MVC route registration doesn't work
I have
Controller:
[MySite]\Controllers\DistributionTools\TrackingChannelsController.cs
[HttpPost]
public void InitTcFirstPageView()
{
var model = new TcFirstPageModel
{
...
0
votes
1answer
401 views
global.asax to check for files in a folder and copy if the folder is empty
I have a MVC3 application with some XML files on the App_Data folder. To prevent these files been overwritten with the new builds, the team responsible for the publication to the web suggest to add ...
3
votes
2answers
2k views
Global.asax event that has access to session state
I'm trying to access the session state in my global.asax for every request (page, documents, PDF, etc.). I know i can't do that in Application_BeginRequest, and i thought i could in ...
2
votes
0answers
131 views
How and where to update RolePrincipal?
I'm using asp.net FormAuthentication and a custom role manager. I would like to add a custom Identity to the User object so I can store some custom user data in the User object and still have all the ...
4
votes
3answers
308 views
How to get more detail from an exception?
I have a .NET 4.0 web application which implements an error handler within the Application_Error event of Global.asax.
When an exception occurs this intercepts it and sends me an email including a ...
0
votes
1answer
411 views
Global.asax events not firing for IHttpHandler
I've written a C# HttpHandler in VS2010 and want to do some initialisation in the application_start() event (e.g. set up logging etc.), but for some reason it isn't firing.
I've tried running against ...
-1
votes
1answer
645 views
Storing and retrieving global variables from global.asax
I have an assignment for an ASP.NET project that deals with storing and retrieving global variables from a global.asax file.
My instructor gave me this part for defining the variable:
...
3
votes
1answer
443 views
Errors not caught by Global.asax?
My project has an error page called oops.aspx. We have the following code in global.asax:
protected void Application_Error(object sender, EventArgs e)
{
Server.Transfer("~/oops.aspx", true);
}
...
1
vote
1answer
944 views
Where to configure a WCF service (REST and SOAP)
I am implementing a WCF Web Service responsible of publishing data via REST and SOAP by using multiple bindings. The service is to be hosted on an IIS.
I have previously written some WCF services and ...
0
votes
0answers
155 views
Handling an expected 404 in Asp.Net MVC app
I am currently building a mobile site for my client, the m-site essentially replicates the data on the website but in a mobile friendly format. Anyway the data is currently coming from sharepoint ...
1
vote
2answers
377 views
Server.MapPath inside Application_End handler in Global.asax
I want to save a file when my application ends.
For that, I need to get the root folder of the application.
The only way I know to do that is using Server.MapPath("~"), but this does not work, even ...
5
votes
2answers
362 views
RavenDB Embedded on GoDaddy - Application_Start firing multiple times
I'm using RavenDB Embedded on my MVC3 application. Locally in IIS Express, the whole app works fine.
However, hosted at GoDaddy, I'm seeing Application_Start fire multiple times. This is ...
2
votes
5answers
224 views
When does HttpRequest get created?
In my MVC web application, I'm checking Request.IsLocal to see if the application is running on my machine--if it is, I set a Global static variable which tells the rest of my application that I am in ...
1
vote
0answers
453 views
Global.asax ApplicationError does not trigger for exceptions in webmethods
I have a situation where I use jQuery to call Webmethod in .aspx codebehind (not asmx webservice or anything similar). I have a simple error logger defined in Global.asax ApplicationError, so (almost) ...
0
votes
0answers
233 views
Global.asax with uncompiled .NET site
I'm using Visual Studio 2010 to create a very large .NET 4.0 website. I'm not compiling the site so that I can update one page without having to republish the entire project. I have and ...
0
votes
1answer
299 views
Check if user exists on every request in MVC?
Hi,
I need to check if the logged in user do still exists in database, if not I need to redirect to another webpage.
Somthing like this :
if (AccountHandler.Instance.UserIdentityName.Length ...
1
vote
1answer
1k views
ASP.NET change SessionID
i must change the SessionID for an ASP.NET 4.0 Application (SessionID via Cookies) to have it run on 2 domains with the same Session (http://web1.local and http://web2.local). This will keep the Items ...
2
votes
1answer
897 views
Is Response.Redirect available in global.asax using IIS 7 Integrated Mode?
I'm researching an issue we're having with IIS 7 running in integrated mode. We have several applications running in .net 3.5. The standard way we have always caught and dealt with unhandled ...
0
votes
1answer
337 views
Azure Application_End not hit and Application_Start hits multiple times (a few minutes in between)
In my Azure environment I have a webrole with on the instances multiple websites. The Application_Start() method in global.asax in a WCF-project is called multiple times (a few minutes in between), ...
2
votes
3answers
1k views
force Session_Start
Hoe can I force the Session_Start method on my global.asax to be called every time my application runs on development mode?
I have some code that I need to debug but sometimes it is called, sometimes ...
0
votes
2answers
142 views
Optional parameters in routing ending with paging parameter
I've been creating a blog, which contains of 3 diffrent views.
- Overview
- Post Detail
- Filtered overview
The filtered overview is based on blogposts which contain a certain tag, to make the url ...
4
votes
3answers
802 views
How to check if Global.asax file is being called
I am having hard time in executting an On_Error event in Global.asax file. When the application gets error ,it should go to Global.asax file , log the error in database and redirect to custom error ...
1
vote
2answers
602 views
Read Global Application property from WCF Service
I'm using in my Global.asax class the object Application to store data.
Application.Set("data", "test");
Now, in my WCF Service, I want to be abble to read this property. How can I do that?
...
2
votes
1answer
140 views
Global switch to make all controllers sessionless
Instead of having to go through all the controller classes and apply the proper attribute is there some way to do it globally?
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
1answer
190 views
How to send the controller segment of a URL through to an ASP.NET MVC Controller
I'm trying to get the URL segments of a page request in the global.asax file using HttpContext.Current.Request.RawUrl. My code is as follows:
public static void RegisterRoutes(RouteCollection routes)
...
1
vote
1answer
165 views
Are these variables being garbage collected?
I am trying to get Quartz.net scheduler to work, but I don't know why it is not firing for jobs scheduled at a future date. I have tested with a cron trigger that fires every minute and it works (job ...
4
votes
1answer
2k views
Auto-Start application / global.asax / wcf service when IIS7 starts automatically
Thank you for your time :)
I'm sorry if this has been asked before, I just really need clarification.
Environment: server 2008 R2 64bit
Basically what im attempting to do is create an autonomous ...
0
votes
1answer
651 views
MVC3 Resource not found - Default area page
This is an odd one.
A web app which I've been working on for a number of months has worked absolutely fine up until two days ago.
The basic structure in question comprises of a number of Areas (the ...
0
votes
1answer
436 views
Deploy ASP MVC 3 application under IIS 7 Default Web Site: File not found error
My Default Web Site on IIS is pointing at
"C:/intepub/wwwroot"
. In this directory, I have place a subdirectory called "mvc" that contains the files needed to run the MVC 3 web app. Therefore ...
1
vote
3answers
668 views
How to get a list of active sessions in a web application?
I am trying to get a list of active session id's in my web application.
I tried to manage a list in Global.asax.
I add session id when Session_Start is fired, and remove session id when Session_End ...
0
votes
3answers
752 views
How do I reference a property in Global.asax from .aspx page?
The name 'Global' does not exist in the current context
I'm getting the above error when trying to reference a property I've created in Global.asax:
public static String ThemeColor
{ get; set; }
...
