ErrorPage.aspx
上传用户:simon2hong
上传日期:2021-11-18
资源大小:16746k
文件大小:2k
- <%@ Page Language="C#" AutoEventWireup="true" CodeFile="ErrorPage.aspx.cs" Inherits="ErrorPage" %>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml" >
- <head runat="server">
- <title>网站错误页面</title>
- <link href="ASPNET2.0BaseCss.css" type="text/css" rel="stylesheet">
- </head>
- <body>
- <form id="form1" runat="server">
- <table cellSpacing="0" cellPadding="0" width="75%" align="center" border="0">
- <TR>
- <TD bgColor="#d8e4f8" colSpan="2" height="4"></TD>
- </TR>
- <tr>
- <td vAlign="top" width="153" bgColor="#eff7f4"><asp:image id="RegisterImage" Runat="server" Width="153"></asp:image></td>
- <TD align="center" bgColor="#ebebff">
- <TABLE cellSpacing="4" cellPadding="0" width="580">
- <TR vAlign="top" height="*">
- <TD colSpan="2" height="148">
- <TABLE cellSpacing="0" cellPadding="4" width="100%" border="0">
- <tr>
- <td><a><b>错误页:</b></a> <a><font color="red"><%=Request["ErrorUrl"]%></font></a></td>
- </tr>
- <TR>
- <TD>
- <HR noShade SIZE="1">
- </TD>
- </TR>
- <TR>
- <td class="Normal" valign="top">
- <a><b>错误信息:</b></a>
- <br>
- <a><font color="red"><%=Request["ErrorMsg"]%></font></a>
- </td>
- </TR>
- <tr>
- <td height="220"></td>
- </tr>
- <tr>
- <td vAlign="middle" align="center" height="80"><asp:button id="BackBtn" runat="server" Width="100" CssClass="ButtonCss" Text="返回" OnClick="BackBtn_Click"></asp:button></td>
- </tr>
- <tr>
- <td colspan="2" width="100%">
- <hr size="1">
- </td>
- </tr>
- </TABLE>
- </TD>
- </TR>
- </TABLE>
- </TD>
- </tr>
- </table>
- </form>
- </body>
- </html>