logout.aspx
来自「基于WEB的在线考试系统建立在系统后台的数据库的基础上」· ASPX 代码 · 共 52 行
ASPX
52 行
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Logout.aspx.cs" Inherits="Teacher_Logout" %>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head id="Head1" runat="server">
<title>注销登录</title>
<link href="../css/Style.css" rel="stylesheet" type="text/css">
<script type="text/javascript">
function reopen()
{
ALLgoToURL('parent','Login.aspx');
}
function ALLgoToURL() {
var i, args=ALLgoToURL.arguments;
document.MM_returnValue = false;
for (i=0; i<(args.length-1); i+=2)
eval(args[i]+".location='"+args[i+1]+"'");
}
</script>
</head>
<body>
<form id="form1" runat="server">
<p style="margin:10%;"></p>
<table cellpadding="0" cellspacing="0" border="0" width="350" bgcolor="#FFFFFF" align="center">
<tr>
<td class="wtabtitleleft wtabtitletxt" nowrap="nowrap">登陆注销</td>
<td class="wtabtitleright"></td>
</tr>
<tr>
<td class="wtabcontent" colspan="2" style="height:100">
<div style="float:left;width:80px;">
<img src="../images/logout.gif" border="0" align="absmiddle" />
</div>
<div style="float:left; margin:10px; text-align:center;">
你确定要注销当前登陆用户吗?<br /><br />
<asp:Button ID="btnOK" runat="server" CssClass="button60" OnClick="btnOK_Click" Text="确定" />
<asp:Button ID="btnCancel" runat="server" CssClass="button60" OnClick="btnCancel_Click" Text="放弃" />
</div>
</td>
</tr>
<tr>
<td class="wtabbuttomleft" ></td>
<td width="80%" class="wtabbuttomright"></td>
</tr>
</table>
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?