About 76,800 results
Open links in new tab
  1. Master Page Globalization - CodeProject

    Mar 13, 2009 · Global.asax is the first thing called upon page request, and thus provides us with a way to affect control creation. Because the culture of the current thread resets to default on page redirect …

  2. PHP, Global.asax and Output Caching - Code Project

    Jun 5, 2012 · Global.asax file is an optional file that contains code for handling application-level and session-level events raised by ASP.NET. To add that file into your Phalanger powered web, simply …

  3. A Walkthrough to Application State - CodeProject

    Jun 11, 2010 · What is Global.asax To handle application events or methods, we can have a file named Global.asax in the root directory of your application. At any single point of time, an HTTPApplication …

  4. ASP.NET Web Services Dependency Injection using Unity

    Jan 5, 2012 · Step 1: Setting Up the Container in Global.asax The first step is to setup Unity Container in Global.asax file. This is a good place to do it because it can be accessed either by web pages or by …

  5. IP address blocking in ASP.NET - CodeProject

    Nov 15, 2014 · The IsIpBlocked() method is public and called from the event handler in the Global.asax file. The method first determines if the given address is IPv4 or IPv6 and then compare the address …

  6. Creating a Code First Database Initializer Strategy

    May 30, 2011 · The best place to do that is in the Global.asax file in the Application_Start handler. You will use the SetInitializer method that exists in the Database class to wire up the strategy. Here is a …

  7. Fight 404 errors with ASP.NET Routing - CodeProject

    Dec 28, 2008 · Here is an example: The attached project contains all the parts you'll need: WebFormRouteHandler created by Chris Cavanagh representing an IRouteHandler implementation, …

  8. Routing Integration - WCF feature - CodeProject

    Apr 16, 2012 · Routing Integration Steps: 1: In Global.asax.cs in Application_Start event add the ServiceRoute to the RouteTable. These routes added represents the virtual URIs which service will …

  9. Custom Routes for MVC Application - CodeProject

    Dec 13, 2011 · Custom Routes It is possible to develop an MVC application without creating a Custom Route. But sometimes, there is a situation to change the pattern of URL in which it makes sense to …

  10. Using HttpClient As It Was Intended (Because You’re Not)

    Jul 1, 2017 · In this case, it can become unmanageable to create separate client instances for all of the HTTP calls you make. You can still gain all the advantages of a single client instance by varying your …