📄 search.aspx
字号:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Search.aspx.cs" Inherits="ControlPanel_Search"
StylesheetTheme="MainStyle" %>
<!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>
<script>
var fstMain_cols;
function mouseover(item)
{
item.style.borderColor = "#003399";
item.style.background = "#CCCCFF";
}
function mouseout(item)
{
item.style.borderColor = "";
item.style.background = "";
}
function hidetoc()
{
fstMain_cols = top.fstMain.cols;
top.fstMain.cols = "0,*";
top.mainFrame.MNP_showtoc.style.display = "";
top.mainFrame.MNP_showtoc_td.style.width = "55px";
}
function showtoc()
{
top.mainFrame.MNP_showtoc.style.display = "none";
top.mainFrame.MNP_showtoc_td.style.width = "1px";
if (fstMain_cols)
top.fstMain.cols = fstMain_cols;
else
top.fstMain.cols = "216,*";
}
</script>
</head>
<body topmargin="0" leftmargin="0" bgcolor="GhostWhite">
<table width="169" height="47" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="169" height="47" valign="bottom" style="color: #000000"
dir="LTR">
<form style="margin: 0px" runat="server" target="mainFrame">
<table cellpadding="0" cellspacing="0" width="162" height="21">
<tr>
<td width="66%">
搜索会员
</td>
<td width="34%" align="right">
<div style="cursor: hand; border-width: 1px; border-style: outset" title="" onmouseover="mouseover(this)"
onmouseout="mouseout(this)" onclick="hidetoc()">
关闭菜单</div>
</td>
</tr>
</table>
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td width="127" style="height: 22px">
<span>
<asp:TextBox ID="txt_UserName" runat="server" MaxLength="15" Width="120px"></asp:TextBox>
</span>
</td>
<td width="42" style="height: 22px">
<asp:Button ID="btn_Search" runat="server" OnClick="btn_Search_Click" Text="搜索" PostBackUrl="Member/MemberList.aspx" /></td>
</tr>
</table>
</form>
</td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -