SlideShare a Scribd company logo
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

What's hot (20)

PPT
Server Controls of ASP.Net
Hitesh Santani
 
PPTX
Controls
teach4uin
 
PDF
C sharp and asp.net interview questions
Akhil Mittal
 
ZIP
ASP.Net Presentation Part1
Neeraj Mathur
 
PPTX
Asp.net server control
Sireesh K
 
PPT
ASP.NET 12 - State Management
Randy Connolly
 
PPT
Asp.net.
Naveen Sihag
 
PPTX
Data Access Options in SharePoint 2010
Rob Windsor
 
PPT
Asp.net server controls
Raed Aldahdooh
 
PPTX
Lyudmila Zharova: Developing Solutions for SharePoint 2010 Using the Client O...
SharePoint Saturday NY
 
PPT
ASP.NET 02 - How ASP.NET Works
Randy Connolly
 
PPT
Csphtp1 20
HUST
 
PPTX
Asp objects
Kavya Bhaisora
 
PPT
Asp
yuvaraj72
 
PPTX
SharePoint 2010 Client-side Object Model
Phil Wicklund
 
PPTX
Asp PPT (.NET )
Ankit Gupta
 
PPTX
Advanced SharePoint Web Part Development
Rob Windsor
 
PPTX
ASP.NET Page Life Cycle
Abhishek Sur
 
PDF
ASP.NET Overview - Alvin Lau
Spiffy
 
Server Controls of ASP.Net
Hitesh Santani
 
Controls
teach4uin
 
C sharp and asp.net interview questions
Akhil Mittal
 
ASP.Net Presentation Part1
Neeraj Mathur
 
Asp.net server control
Sireesh K
 
ASP.NET 12 - State Management
Randy Connolly
 
Asp.net.
Naveen Sihag
 
Data Access Options in SharePoint 2010
Rob Windsor
 
Asp.net server controls
Raed Aldahdooh
 
Lyudmila Zharova: Developing Solutions for SharePoint 2010 Using the Client O...
SharePoint Saturday NY
 
ASP.NET 02 - How ASP.NET Works
Randy Connolly
 
Csphtp1 20
HUST
 
Asp objects
Kavya Bhaisora
 
SharePoint 2010 Client-side Object Model
Phil Wicklund
 
Asp PPT (.NET )
Ankit Gupta
 
Advanced SharePoint Web Part Development
Rob Windsor
 
ASP.NET Page Life Cycle
Abhishek Sur
 
ASP.NET Overview - Alvin Lau
Spiffy
 

Viewers also liked (9)

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

Similar to Programming web application (20)

PPTX
Chapter 5
application developer
 
PPTX
Harish Understanding Aspnet
rsnarayanan
 
PDF
Aspdotnet
Adil Jafri
 
PDF
CTU June 2011 - Things that Every ASP.NET Developer Should Know
Spiffy
 
PPTX
Asp.NET Handlers and Modules
py_sunil
 
PPTX
Understanding ASP.NET Under The Cover - Miguel A. Castro
Mohammad Tayseer
 
PDF
Asp .net web form fundamentals
Gopal Ji Singh
 
PDF
Advanced Asp.Net Concepts And Constructs
Manny Siddiqui MCS, MBA, PMP
 
PPTX
Skillwise - Advanced web application development
Skillwise Group
 
PPTX
Http pipeline
vrluckyin
 
PPTX
Http pipeline
icubesystem
 
PPSX
13 asp.net session19
Vivek Singh Chandel
 
PDF
ASP.NET Interview Questions PDF By ScholarHat
Scholarhat
 
PPSX
02 asp.net session02
Vivek Singh Chandel
 
PPT
Asp dot net long
Amelina Ahmeti
 
PPS
01 asp.net session01
Mani Chaubey
 
PDF
Web II - 02 - How ASP.NET Works
Randy Connolly
 
PPT
Asp.net
Naveen Sihag
 
PPTX
Chapter 26
application developer
 
Harish Understanding Aspnet
rsnarayanan
 
Aspdotnet
Adil Jafri
 
CTU June 2011 - Things that Every ASP.NET Developer Should Know
Spiffy
 
Asp.NET Handlers and Modules
py_sunil
 
Understanding ASP.NET Under The Cover - Miguel A. Castro
Mohammad Tayseer
 
Asp .net web form fundamentals
Gopal Ji Singh
 
Advanced Asp.Net Concepts And Constructs
Manny Siddiqui MCS, MBA, PMP
 
Skillwise - Advanced web application development
Skillwise Group
 
Http pipeline
vrluckyin
 
Http pipeline
icubesystem
 
13 asp.net session19
Vivek Singh Chandel
 
ASP.NET Interview Questions PDF By ScholarHat
Scholarhat
 
02 asp.net session02
Vivek Singh Chandel
 
Asp dot net long
Amelina Ahmeti
 
01 asp.net session01
Mani Chaubey
 
Web II - 02 - How ASP.NET Works
Randy Connolly
 
Asp.net
Naveen Sihag
 
Ad

Recently uploaded (20)

PDF
“MPU+: A Transformative Solution for Next-Gen AI at the Edge,” a Presentation...
Edge AI and Vision Alliance
 
PPTX
Practical Applications of AI in Local Government
OnBoard
 
PPTX
New ThousandEyes Product Innovations: Cisco Live June 2025
ThousandEyes
 
PDF
FME as an Orchestration Tool with Principles From Data Gravity
Safe Software
 
PDF
LLM Search Readiness Audit - Dentsu x SEO Square - June 2025.pdf
Nick Samuel
 
PPTX
MARTSIA: A Tool for Confidential Data Exchange via Public Blockchain - Pitch ...
Michele Kryston
 
PDF
ArcGIS Utility Network Migration - The Hunter Water Story
Safe Software
 
PPTX
Simplifica la seguridad en la nube y la detección de amenazas con FortiCNAPP
Cristian Garcia G.
 
PDF
Unlocking FME Flow’s Potential: Architecture Design for Modern Enterprises
Safe Software
 
PDF
Hyderabad MuleSoft In-Person Meetup (June 21, 2025) Slides
Ravi Tamada
 
DOCX
Daily Lesson Log MATATAG ICT TEchnology 8
LOIDAALMAZAN3
 
PDF
Kubernetes - Architecture & Components.pdf
geethak285
 
PPTX
reInforce 2025 Lightning Talk - Scott Francis.pptx
ScottFrancis51
 
PPTX
MARTSIA: A Tool for Confidential Data Exchange via Public Blockchain - Poster...
Michele Kryston
 
PPTX
Enabling the Digital Artisan – keynote at ICOCI 2025
Alan Dix
 
PDF
Redefining Work in the Age of AI - What to expect? How to prepare? Why it mat...
Malinda Kapuruge
 
PDF
Open Source Milvus Vector Database v 2.6
Zilliz
 
PDF
Database Benchmarking for Performance Masterclass: Session 1 - Benchmarking F...
ScyllaDB
 
PDF
Plugging AI into everything: Model Context Protocol Simplified.pdf
Abati Adewale
 
PDF
Hello I'm "AI" Your New _________________
Dr. Tathagat Varma
 
“MPU+: A Transformative Solution for Next-Gen AI at the Edge,” a Presentation...
Edge AI and Vision Alliance
 
Practical Applications of AI in Local Government
OnBoard
 
New ThousandEyes Product Innovations: Cisco Live June 2025
ThousandEyes
 
FME as an Orchestration Tool with Principles From Data Gravity
Safe Software
 
LLM Search Readiness Audit - Dentsu x SEO Square - June 2025.pdf
Nick Samuel
 
MARTSIA: A Tool for Confidential Data Exchange via Public Blockchain - Pitch ...
Michele Kryston
 
ArcGIS Utility Network Migration - The Hunter Water Story
Safe Software
 
Simplifica la seguridad en la nube y la detección de amenazas con FortiCNAPP
Cristian Garcia G.
 
Unlocking FME Flow’s Potential: Architecture Design for Modern Enterprises
Safe Software
 
Hyderabad MuleSoft In-Person Meetup (June 21, 2025) Slides
Ravi Tamada
 
Daily Lesson Log MATATAG ICT TEchnology 8
LOIDAALMAZAN3
 
Kubernetes - Architecture & Components.pdf
geethak285
 
reInforce 2025 Lightning Talk - Scott Francis.pptx
ScottFrancis51
 
MARTSIA: A Tool for Confidential Data Exchange via Public Blockchain - Poster...
Michele Kryston
 
Enabling the Digital Artisan – keynote at ICOCI 2025
Alan Dix
 
Redefining Work in the Age of AI - What to expect? How to prepare? Why it mat...
Malinda Kapuruge
 
Open Source Milvus Vector Database v 2.6
Zilliz
 
Database Benchmarking for Performance Masterclass: Session 1 - Benchmarking F...
ScyllaDB
 
Plugging AI into everything: Model Context Protocol Simplified.pdf
Abati Adewale
 
Hello I'm "AI" Your New _________________
Dr. Tathagat Varma
 

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");