1 / 23

Working with ASP Pages

Working with ASP Pages. The <form> Tag (1). Remember that most ASP.NET pages contain a single <form> tag with the runat attribute set It’s possible to have multiple <form> tags but only one can be visible at a time Visible property is true

Download Presentation

Working with ASP Pages

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Working with ASP Pages

  2. The <form> Tag (1) • Remember that most ASP.NET pages contain a single <form> tag with the runat attribute set • It’s possible to have multiple <form> tags but only one can be visible at a time • Visible property is true • This capability is great for implementing wizards (sequential dialog boxes) • The MultiView and Wizard control can also be used

  3. The <form> Tag (2) • Generally <form> tags are the outermost tag but can be children of container controls <table>, <div>, etc… • Non-container (server) controls must appear inside of a <form> tag or exceptions will be thrown at run-time • No compile error occurs

  4. The HtmlForm Class (1) • A form is accessed on the server using the HtmlForm class • The DefaultButton property sets the form’s default button • The button clicked when enter is pressed • The InnerHtml property contains the markup between the opening and closing tags

  5. The HtmlForm Class (2) • The HasControls method indicates whether a from has child controls • The FindControl finds the control instance with a particular ID • Only direct children are searched • The Focus method sets input focus to a particular control

  6. Cross-Page Posting (Introduction 1) • You can use a HyperLink control to create a link to another page • Any Button control can be used for cross-page postbacks • Set the PostBackURL property to the desired Web page

  7. Cross-Page Posting (Introduction 2) • Use the Server.Transfer method • The target page is passed as an argument • Any code following Server.Transfer is not executed Server.Transfer(“DestinationPage.aspx”);

  8. Cross-Page Posting (Getting Data from the Previous Page) • The PreviousPage property of the Page object contains a reference to the page that caused the postback • This property allows you to get at the controls from the previous form and their values • This is magically accomplished through viewstate

  9. Cross-Page Posting (Example) • Get a reference to a control on another page and print the text TextBox txt; txt = (TextBox)PreviousPage.FindControl( "txtPreserve"); Response.Write(txt.Text);

  10. Detecting Cross-Page Postbasks (1) • Test the PreviousPage property to see if it is null • If it is, the page was not loaded as a cross-page postback • Test the IsCrossPagePostBack property of the ‘posting’ page

  11. Detecting Cross-Page Postbacks (2) • The @PreviousPageType directive allows you to use strongly typed syntax if page “b” will only be posted from page “a” <%@ PreviousPageTypevirtualPath=“a.aspx” %>

  12. Cross page Postback vs. Server.Transfer • Cross page postbacks are client-based • The Transfer method is server-based • Both allow you to reference the PreviousPage property

  13. Introduction to Error Handling • Just like desktop applications, exceptions are thrown in various cases • Divide by 0, IO, Database, etc. • Unhandled, we call these the yellow page of death • What happens depends on the following Web.config setting: <compilation debug="false">

  14. Error Message (Debug=true)

  15. Error Message (Debug=false)

  16. Error Message – Enabling Debugging

  17. Error Message – Enabling Script Debugging

  18. Handling Errors (Introduction) • Exception handlers are created (as usual) using try, catch blocks • The Page_Error event handler gives you a global exception handler for the page • The Application_Error event applies to the entire application itself

  19. Handling Errors (Introduction) • Use Server.GetLasError() to get information about the most recent error • Use Server.ClearError() to clear the exception • Create other exception handlers, as necessary

  20. Configuring Custom Errors • It’s all controlled by the customErrors section of the Web.config file • Attributes • defaultRedirect attribute causes a redirect to the specified page • Mode attribute enables / disables custom errors • On – Enables custom for remote and local hosts • Off – Disables custom errors • RemoteOnly – (default) Custom errors are displayed to the remote client

  21. Configuring Custom Errors (Example) <customErrors mode="On" defaultRedirect="GenericErrorPage.htm"> <error statusCode ="403" redirect="NoAccess.htm" /> <error statusCode="404" redirect="FileNotFound.htm" /> </customErrors>

  22. Tracing (Introduction) • It’s possible to trace execution by enabling tracing in the Web.config file • @Page directives can also be used • Example <trace enabled="true" pageOutput="true"/> • See handout

  23. Tracing (Output)

More Related