Programming web application
    Page and Application Exception Handling
    Programming the Web.config File Settings
    Asynchronous Web Page Programming
    Creating a Custom HTTP Handler




   Using the asp.net intrinsic Objects
   Determining the Browser Type
   Accessing Web Page Headers
There are certain Web programming tasks that are
outside the bounds of the basic page request–response
scenario.

   Catch unhandled exceptions at the page or
    application level.
   Read and modify settings in different configuration
    files.
   Enable asynchronous communication inside Web
    pages.
   Create a custom HTTP handler to respond to
    requests for nonstandard file types.
   To catch errors at the page level, you create a
    Page_Error event handler inside the code for each
    page for which you wish to catch unhandled errors.

   Access the Server.GetLastError method to retrieve the
    last error, and then call Server.ClearError to remove
    the error from the queue.

    private void Page_Error(object sender, EventArgs e)
    {
    Trace.Write("ERROR: " +
    Server.GetLastError().Message);
    Server.ClearError();
    }
   You define an application-wide handler by adding
    the Application_Error method to your application’s
    Global.asax file.
   Here you typically pass the error handling onto
    another page that might log the error and display
    troubleshooting information to the user by using the
    Server.Transfer method.

    void Application_Error(object sender, EventArgs e)
    {
    //code that runs when an unhandled error occurs
    Server.Transfer("HandleError.aspx");
    }
   There are times when you might want to
    programmatically edit configuration settings.

   ASP.NET provides the ASP.NET Configuration
    application programming interface (API) for this purpose.

   You use a System.Configuration.Configuration class to read
    the Web.config file and write any changes you might make.

   To create a Configuration object for the current
    application, you can use the static class
    WebConfigurationManager.
   With this class, you can read configuration sections by
    calling the GetSection and GetSectionGroup methods.

   For example, the following code sample displays the
    current authentication mode as defined in the
    <system.web><authentication> section, and then displays it
    in the Label1 control:

    AuthenticationSection section =(AuthenticationSection)
    WebConfigurationManager.GetSection("system.web/
    authentication");
    Label1.Text = section.Mode.ToString();
   Besides accessing the <system.web> section, you can
    access custom application settings using the
    WebConfigurationManager.AppSettings collection.

   The following code sample demonstrates how to display
    the MyAppSetting custom application setting (which you
    could add using the ASP.NET Web Site Configuration
    tool) in a Label control:

   Label1.Text =
    WebConfigurationManager.AppSettings["MyAppSetting"];
   Similarly, you can programmatically access connection
    strings using the
    WebConfigurationManager.ConnectionStrings collection:

   Label1.Text =
    WebConfigurationManager.ConnectionStrings["Northwi
    nd"].ConnectionString;
   If you want to make changes, however, you must choose
    a specific configuration location.
   To do this, create an instance of a Configuration object.

   To create an instance of the root Web.config file that applies to
    all applications, call the static
    WebConfigurationManager.OpenWebConfiguration method
    and pass a null parameter to create a Configuration object.

   Then, use the Configuration object to create objects for
    individual sections.

   Edit values in those sections and save the changes by
    calling Configuration.Save.
   Asynchronous programming is used to improve
    the efficiency of long-running Web pages.

   During busy times when multiple pages are
    requested simultaneously the thread pool
    responding to user requests makes Web pages
    more efficient.
1. Add the Async=”true” attribute to the @ Page directive.

2. Create events to start and end your asynchronous code
that implements
System.Web.IHttpAsyncHandler.BeingProcessRequest and
System.Web.IHttpAsyncHandler.EndProcessRequest

3. Call the AddOnPreRenderCompleteAsync method to declare
your event handlers
   An HTTP handler is code that executes when an
    HTTP request for a specific resource is made to the
    server.

   For example, when a user requests an .aspx page
    from IIS, the ASP.NET page handler is executed.
    When an .asmx file is accessed, the ASP.NET service
    handler is called.

   To create a custom Hypertext Transfer Protocol
    (HTTP) handler, you first create a class that
    implements the IHttpHandler interface (to create a
    synchronous handler) or the IHttpAsyncHandler (to
    create an asynchronous handler).
   Both handler interfaces require you to implement
    the IsReusable property and the ProcessRequest method.

   The IsReusable property specifies whether the
    IHttpHandlerFactory object (the object that actually
    calls the appropriate handler) can place your
    handlers in a pool and reuse them to increase
    performance or whether it must create new
    instances every time the handler is needed.

   The ProcessRequest method is responsible for
    actually processing the individual HTTP requests.

   Once it is created, you then register and configure
    your HTTP handler with IIS.
public class ImageHandler : IHttpHandler
{
public ImageHandler()
{}
public bool IsReusable
{
get { return false; }
}
public void ProcessRequest(HttpContext context)
{
context.Response.ContentType = "image/jpeg";
}
}
   For performance reasons, IIS passes only requests
    for specific file types to ASP.NET.

   For example, IIS passes requests for .aspx, .axd,
    .ascx, and .asmx to the Aspnet_Isapi.dll file that
    performs the ASP.NET processing.

   For all other file types, including .htm, .jpg, and
    .gif, ASP.NET simply passes the file from the file
    system directly to the client browser.
1.Open IIS Manager.
2. Expand the nodes until you get to your site or Default Web
Site. Select the node for your application.
3. Double-click the Handler Mappings icon in the center pane
of IIS Manager.

4. In the Actions pane (right side), select Add Managed
Handler.

5. In the Add Managed Handler dialog box, set the Request
path to the file name or extension you wish to map, in this
case, .jpg. The Type name is the class name of the HTTP
handler. If your HTTP handler is inside the App_Code
directory, it will appear in the drop-down list.
   Alternatively, if you are using IIS 7, you can simply
    configure the handler for the file extension in your
    Web.config file. You do not, then, need to use IIS
    Manager.
   For each file extension or file name you want to
    register, create an <add> element in the
    <configuration><system.web><httpHandlers> section of
    your Web.config file:

    <configuration>
    <system.web>
    <httpHandlers>
    <add verb="*" path="*.jpg" type="ImageHandler"/>
    <add verb="*" path="*.gif" type="ImageHandler"/>
    </httpHandlers>
    </system.web>
    </configuration>
   You can use the objects inside of ASP.NET to gain
    access to a lot of useful information about your
    application, the server hosting the application, and
    the client requesting resources on the server.

   These objects are referred to as the ASP.NET intrinsic
    objects. They are exposed through objects like Page,
    Browser, Response, Request, Server, and Context.

   Together, these objects provide you a great deal of
    useful information like the user’s Internet Protocol
    (IP) address, the type of browser making the request,
    errors generated during a response, the title of a
    given page, and much more.
Programming web application
   To display different versions of Web pages for
    different browsers, you will need to write code
    that examines the HttpBrowserCapabilities object.

   This object is exposed through Request.Browser.
   Request .Browser has many members that you
    can use to examine individual browser
    capabilities.
Programming web application
   The header information of a rendered HTML
    page contains important information that helps
    describe the page.
   This includes the name of the style sheet, the title
    of the page, and metadata used by search
    engines.

   ASP.NET allows you to edit this information
    programmatically using the
    System.Web.UI.HtmlControls.HtmlHead control.

   This control is exposed via the Page.Header
    property.
   For example, you might use this to set the title of a page
    dynamically at run time based on the page’s content.

    Page.Header.Title = "Current time: " + DateTime.Now;

   To set style information for the page (using the
    <head><style> HTML tag), access Page.Header.StyleSheet.

    Style bodyStyle = new Style();
    bodyStyle.ForeColor = System.Drawing.Color.Blue;
    bodyStyle.BackColor = System.Drawing.Color.LightGray;
    Page.Header.StyleSheet.CreateStyleRule(bodyStyle, null, "
    body");

More Related Content

PPTX
ASP.NET Lecture 2
PDF
Asp.net state management
PPTX
ASP.NET lecture 8
PPT
ASP.NET 03 - Working With Web Server Controls
PPTX
Ch 04 asp.net application
PPTX
ASP.NET Lecture 4
PPT
Web controls
ASP.NET Lecture 2
Asp.net state management
ASP.NET lecture 8
ASP.NET 03 - Working With Web Server Controls
Ch 04 asp.net application
ASP.NET Lecture 4
Web controls

What's hot (20)

PPT
Server Controls of ASP.Net
PPTX
Controls
PDF
C sharp and asp.net interview questions
ZIP
ASP.Net Presentation Part1
PPTX
Asp.net server control
PPT
ASP.NET 12 - State Management
PPT
Asp.net.
PPTX
Data Access Options in SharePoint 2010
PPT
Asp.net server controls
PPTX
Lyudmila Zharova: Developing Solutions for SharePoint 2010 Using the Client O...
PPT
ASP.NET 02 - How ASP.NET Works
PPT
Csphtp1 20
PPTX
Asp objects
PPT
PPTX
SharePoint 2010 Client-side Object Model
PPTX
Asp PPT (.NET )
PPTX
Advanced SharePoint Web Part Development
PPTX
ASP.NET Page Life Cycle
PDF
ASP.NET Overview - Alvin Lau
Server Controls of ASP.Net
Controls
C sharp and asp.net interview questions
ASP.Net Presentation Part1
Asp.net server control
ASP.NET 12 - State Management
Asp.net.
Data Access Options in SharePoint 2010
Asp.net server controls
Lyudmila Zharova: Developing Solutions for SharePoint 2010 Using the Client O...
ASP.NET 02 - How ASP.NET Works
Csphtp1 20
Asp objects
SharePoint 2010 Client-side Object Model
Asp PPT (.NET )
Advanced SharePoint Web Part Development
ASP.NET Page Life Cycle
ASP.NET Overview - Alvin Lau
Ad

Viewers also liked (9)

PPTX
Deploying configuring caching
PPTX
Mobile application
PPTX
Profile
PPTX
User controls
PPTX
Introducing asp
PPTX
Globalization and accessibility
PPTX
Custom controls
PPTX
Monitoring, troubleshooting,
PPT
ความรู้เกี่ยวกับอินเทอร์เน็ตบี
Deploying configuring caching
Mobile application
Profile
User controls
Introducing asp
Globalization and accessibility
Custom controls
Monitoring, troubleshooting,
ความรู้เกี่ยวกับอินเทอร์เน็ตบี
Ad

Similar to Programming web application (20)

PPSX
11 asp.net session16
PPTX
PPSX
13 asp.net session19
PPT
Active server pages
PPTX
Overview of ASP.Net by software outsourcing company india
PPT
.Net course-in-mumbai-ppt
PDF
Asp.net By Durgesh Singh
PPTX
PPTX
Active Server Page - ( ASP )
PPT
Asp.Net Ajax Component Development
PPSX
05 asp.net session07
PPTX
81.pptx ajx fyjc semester paper 2 parrtens
PPT
Asp.net architecture
PPT
Creating web form
PPT
Creating web form
PPT
The complete ASP.NET (IIS) Tutorial with code example in power point slide show
PPS
SharePoint 2007 Presentation
PDF
Asp .net web form fundamentals
11 asp.net session16
13 asp.net session19
Active server pages
Overview of ASP.Net by software outsourcing company india
.Net course-in-mumbai-ppt
Asp.net By Durgesh Singh
Active Server Page - ( ASP )
Asp.Net Ajax Component Development
05 asp.net session07
81.pptx ajx fyjc semester paper 2 parrtens
Asp.net architecture
Creating web form
Creating web form
The complete ASP.NET (IIS) Tutorial with code example in power point slide show
SharePoint 2007 Presentation
Asp .net web form fundamentals

Recently uploaded (20)

PDF
The-Future-of-Automotive-Quality-is-Here-AI-Driven-Engineering.pdf
PDF
CXOs-Are-you-still-doing-manual-DevOps-in-the-age-of-AI.pdf
PDF
Human Computer Interaction Miterm Lesson
PDF
Examining Bias in AI Generated News Content.pdf
PDF
CEH Module 2 Footprinting CEH V13, concepts
PDF
ment.tech-Siri Delay Opens AI Startup Opportunity in 2025.pdf
PDF
A symptom-driven medical diagnosis support model based on machine learning te...
PPTX
How to use fields_get method in Odoo 18
PPTX
How to Convert Tickets Into Sales Opportunity in Odoo 18
PDF
Altius execution marketplace concept.pdf
PPTX
AI-driven Assurance Across Your End-to-end Network With ThousandEyes
PDF
Launch a Bumble-Style App with AI Features in 2025.pdf
PDF
Build Real-Time ML Apps with Python, Feast & NoSQL
PDF
5-Ways-AI-is-Revolutionizing-Telecom-Quality-Engineering.pdf
PDF
The AI Revolution in Customer Service - 2025
PDF
Identification of potential depression in social media posts
PDF
Transform-Your-Supply-Chain-with-AI-Driven-Quality-Engineering.pdf
PPTX
AQUEEL MUSHTAQUE FAKIH COMPUTER CENTER .
PDF
AI.gov: A Trojan Horse in the Age of Artificial Intelligence
PDF
SaaS reusability assessment using machine learning techniques
The-Future-of-Automotive-Quality-is-Here-AI-Driven-Engineering.pdf
CXOs-Are-you-still-doing-manual-DevOps-in-the-age-of-AI.pdf
Human Computer Interaction Miterm Lesson
Examining Bias in AI Generated News Content.pdf
CEH Module 2 Footprinting CEH V13, concepts
ment.tech-Siri Delay Opens AI Startup Opportunity in 2025.pdf
A symptom-driven medical diagnosis support model based on machine learning te...
How to use fields_get method in Odoo 18
How to Convert Tickets Into Sales Opportunity in Odoo 18
Altius execution marketplace concept.pdf
AI-driven Assurance Across Your End-to-end Network With ThousandEyes
Launch a Bumble-Style App with AI Features in 2025.pdf
Build Real-Time ML Apps with Python, Feast & NoSQL
5-Ways-AI-is-Revolutionizing-Telecom-Quality-Engineering.pdf
The AI Revolution in Customer Service - 2025
Identification of potential depression in social media posts
Transform-Your-Supply-Chain-with-AI-Driven-Quality-Engineering.pdf
AQUEEL MUSHTAQUE FAKIH COMPUTER CENTER .
AI.gov: A Trojan Horse in the Age of Artificial Intelligence
SaaS reusability assessment using machine learning techniques

Programming web application

  • 2. Page and Application Exception Handling  Programming the Web.config File Settings  Asynchronous Web Page Programming  Creating a Custom HTTP Handler  Using the asp.net intrinsic Objects  Determining the Browser Type  Accessing Web Page Headers
  • 3. There are certain Web programming tasks that are outside the bounds of the basic page request–response scenario.  Catch unhandled exceptions at the page or application level.  Read and modify settings in different configuration files.  Enable asynchronous communication inside Web pages.  Create a custom HTTP handler to respond to requests for nonstandard file types.
  • 4. To catch errors at the page level, you create a Page_Error event handler inside the code for each page for which you wish to catch unhandled errors.  Access the Server.GetLastError method to retrieve the last error, and then call Server.ClearError to remove the error from the queue. private void Page_Error(object sender, EventArgs e) { Trace.Write("ERROR: " + Server.GetLastError().Message); Server.ClearError(); }
  • 5. You define an application-wide handler by adding the Application_Error method to your application’s Global.asax file.  Here you typically pass the error handling onto another page that might log the error and display troubleshooting information to the user by using the Server.Transfer method. void Application_Error(object sender, EventArgs e) { //code that runs when an unhandled error occurs Server.Transfer("HandleError.aspx"); }
  • 6. There are times when you might want to programmatically edit configuration settings.  ASP.NET provides the ASP.NET Configuration application programming interface (API) for this purpose.  You use a System.Configuration.Configuration class to read the Web.config file and write any changes you might make.  To create a Configuration object for the current application, you can use the static class WebConfigurationManager.
  • 7. With this class, you can read configuration sections by calling the GetSection and GetSectionGroup methods.  For example, the following code sample displays the current authentication mode as defined in the <system.web><authentication> section, and then displays it in the Label1 control: AuthenticationSection section =(AuthenticationSection) WebConfigurationManager.GetSection("system.web/ authentication"); Label1.Text = section.Mode.ToString();
  • 8. Besides accessing the <system.web> section, you can access custom application settings using the WebConfigurationManager.AppSettings collection.  The following code sample demonstrates how to display the MyAppSetting custom application setting (which you could add using the ASP.NET Web Site Configuration tool) in a Label control:  Label1.Text = WebConfigurationManager.AppSettings["MyAppSetting"];
  • 9. Similarly, you can programmatically access connection strings using the WebConfigurationManager.ConnectionStrings collection:  Label1.Text = WebConfigurationManager.ConnectionStrings["Northwi nd"].ConnectionString;
  • 10. If you want to make changes, however, you must choose a specific configuration location.  To do this, create an instance of a Configuration object.  To create an instance of the root Web.config file that applies to all applications, call the static WebConfigurationManager.OpenWebConfiguration method and pass a null parameter to create a Configuration object.  Then, use the Configuration object to create objects for individual sections.  Edit values in those sections and save the changes by calling Configuration.Save.
  • 11. Asynchronous programming is used to improve the efficiency of long-running Web pages.  During busy times when multiple pages are requested simultaneously the thread pool responding to user requests makes Web pages more efficient.
  • 12. 1. Add the Async=”true” attribute to the @ Page directive. 2. Create events to start and end your asynchronous code that implements System.Web.IHttpAsyncHandler.BeingProcessRequest and System.Web.IHttpAsyncHandler.EndProcessRequest 3. Call the AddOnPreRenderCompleteAsync method to declare your event handlers
  • 13. An HTTP handler is code that executes when an HTTP request for a specific resource is made to the server.  For example, when a user requests an .aspx page from IIS, the ASP.NET page handler is executed. When an .asmx file is accessed, the ASP.NET service handler is called.  To create a custom Hypertext Transfer Protocol (HTTP) handler, you first create a class that implements the IHttpHandler interface (to create a synchronous handler) or the IHttpAsyncHandler (to create an asynchronous handler).
  • 14. Both handler interfaces require you to implement the IsReusable property and the ProcessRequest method.  The IsReusable property specifies whether the IHttpHandlerFactory object (the object that actually calls the appropriate handler) can place your handlers in a pool and reuse them to increase performance or whether it must create new instances every time the handler is needed.  The ProcessRequest method is responsible for actually processing the individual HTTP requests.  Once it is created, you then register and configure your HTTP handler with IIS.
  • 15. public class ImageHandler : IHttpHandler { public ImageHandler() {} public bool IsReusable { get { return false; } } public void ProcessRequest(HttpContext context) { context.Response.ContentType = "image/jpeg"; } }
  • 16. For performance reasons, IIS passes only requests for specific file types to ASP.NET.  For example, IIS passes requests for .aspx, .axd, .ascx, and .asmx to the Aspnet_Isapi.dll file that performs the ASP.NET processing.  For all other file types, including .htm, .jpg, and .gif, ASP.NET simply passes the file from the file system directly to the client browser.
  • 17. 1.Open IIS Manager. 2. Expand the nodes until you get to your site or Default Web Site. Select the node for your application. 3. Double-click the Handler Mappings icon in the center pane of IIS Manager. 4. In the Actions pane (right side), select Add Managed Handler. 5. In the Add Managed Handler dialog box, set the Request path to the file name or extension you wish to map, in this case, .jpg. The Type name is the class name of the HTTP handler. If your HTTP handler is inside the App_Code directory, it will appear in the drop-down list.
  • 18. Alternatively, if you are using IIS 7, you can simply configure the handler for the file extension in your Web.config file. You do not, then, need to use IIS Manager.  For each file extension or file name you want to register, create an <add> element in the <configuration><system.web><httpHandlers> section of your Web.config file: <configuration> <system.web> <httpHandlers> <add verb="*" path="*.jpg" type="ImageHandler"/> <add verb="*" path="*.gif" type="ImageHandler"/> </httpHandlers> </system.web> </configuration>
  • 19. You can use the objects inside of ASP.NET to gain access to a lot of useful information about your application, the server hosting the application, and the client requesting resources on the server.  These objects are referred to as the ASP.NET intrinsic objects. They are exposed through objects like Page, Browser, Response, Request, Server, and Context.  Together, these objects provide you a great deal of useful information like the user’s Internet Protocol (IP) address, the type of browser making the request, errors generated during a response, the title of a given page, and much more.
  • 21. To display different versions of Web pages for different browsers, you will need to write code that examines the HttpBrowserCapabilities object.  This object is exposed through Request.Browser.  Request .Browser has many members that you can use to examine individual browser capabilities.
  • 23. The header information of a rendered HTML page contains important information that helps describe the page.  This includes the name of the style sheet, the title of the page, and metadata used by search engines.  ASP.NET allows you to edit this information programmatically using the System.Web.UI.HtmlControls.HtmlHead control.  This control is exposed via the Page.Header property.
  • 24. For example, you might use this to set the title of a page dynamically at run time based on the page’s content. Page.Header.Title = "Current time: " + DateTime.Now;  To set style information for the page (using the <head><style> HTML tag), access Page.Header.StyleSheet. Style bodyStyle = new Style(); bodyStyle.ForeColor = System.Drawing.Color.Blue; bodyStyle.BackColor = System.Drawing.Color.LightGray; Page.Header.StyleSheet.CreateStyleRule(bodyStyle, null, " body");