default.aspx
来自「一个较小的采购系统,一些比较实际的代码,可以用来参考」· ASPX 代码 · 共 52 行
ASPX
52 行
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<link href="default.css" type="text/css" rel="stylesheet" />
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Logon</title>
</head>
<body>
<form id="form1" runat="server">
<asp:ScriptManager ID="ScriptManager1" runat="server" />
<div class="logon" style="left:400px;top:80px; width: 214px; height: 104px;">
<table cellpadding="0" cellspacing="0" width="240">
<tr>
<td colspan="2" style="background-color:#6995b8;" align="center"><b style="color:White">登录</b>
</td>
</tr>
<tr>
<td style="height: 24px">
<b style=" font-size:small">用户帐号</b>
</td>
<td style="height: 24px">
<asp:TextBox ID="txtUID" runat="server" Width="149px"></asp:TextBox>
</td>
</tr>
<tr>
<td>
<b style="font-size:small">用户密码</b>
</td>
<td>
<asp:TextBox ID="txtPWD" runat="server" TextMode="Password"></asp:TextBox>
</td>
</tr>
<tr>
<td colspan="2" align="center">
<asp:Button ID="btnlogo" runat="server" Text="登录" Font-Names="宋体" Font-Overline="False" Font-Size="Smaller" Font-Strikeout="False" ForeColor="Black" ToolTip="进入" OnClick="btnlogo_Click" />
</td>
</tr>
<tr>
<td colspan="2" style="height: 19px">
<asp:Label ID="lblinfo" runat="server" Width="190px"></asp:Label>
</td>
</tr>
</table>
</div>
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?