Mega Code Archive

 
Categories / ASP.Net / Page
 

Page ErrorPage property (VB net)

<%@ Page Language="vb" %> <html>    <head>       <title>ErrorPage property example</title>       <script runat="server">          Sub Page_Load()             Page.ErrorPage = Server.MapPath("ErrorPage_Handler.aspx")             Dim x, y, overflow As Integer             x = 1             y = 0             overflow = x/y             'This code will not be executed             Message.Text = "Error Page is " & Page.ErrorPage & "."          End Sub       </script>    </head> <body>    <asp:label id="Message" runat="server"/> </body> </html> <%--ErrorPage_Handler.aspx <%@ Page Language="vb" %> <html>    <head>       <title>ErrorPage property example</title>       <script runat="server">          Sub Page_Load()             Message.Text = "We're sorry. An error occurred during the processing of your request. Please try again later."          End Sub       </script>    </head> <body>    <asp:label id="Message" runat="server"/> </body> </html> --%>