useredit.aspx
来自「1、用SQL查询器打开install目录下的dooogo.sql运行之后创建数据」· ASPX 代码 · 共 47 行
ASPX
47 行
<%@ Page language="c#" Codebehind="UserEdit.aspx.cs" AutoEventWireup="false" Inherits="Club.Manage.UserEdit" %>
<%@ Register TagPrefix="webui" Namespace="Club.Common.WebUI" Assembly="Club.Common" %>
<LINK href="css/default.css" type="text/css" rel="stylesheet">
<webui:ManagePage id="PageManage" runat="server">
<webui:ContentRegion id="titleContains" runat="server">用户修改</webui:ContentRegion>
<webui:ContentRegion id="headerContains" runat="server"></webui:ContentRegion>
<webui:ContentRegion id="Content" runat="server">
<FORM id="Form1" runat="server">
<H2>用户资料修改</H2>
<TABLE width="100%">
<TR>
<TH>
积分:</TH>
<TD>
<asp:TextBox id="txtIntegral" runat="server"></asp:TextBox></TD>
</TR>
<TR>
<TH>
磁盘空间分配:</TH>
<TD>
<asp:TextBox id="txtCapabilitySize" runat="server"></asp:TextBox></TD>
</TR>
<TR>
<TH>
权限:</TH>
<TD>
<asp:DropDownList id="txtDegreeID" runat="server">
<asp:ListItem Value="0" Selected="True">普通会员</asp:ListItem>
<asp:ListItem Value="-1">管理员</asp:ListItem>
</asp:DropDownList></TD>
</TR>
<TR>
<TH>
状态:
</TH>
<TD>
<asp:DropDownList id="txtStateID" runat="server">
<asp:ListItem Value="0" Selected="True">开通</asp:ListItem>
<asp:ListItem Value="1">未审核</asp:ListItem>
<asp:ListItem Value="2">锁定</asp:ListItem>
</asp:DropDownList></TD>
</TR>
</TABLE>
<asp:Button id="btnUpdate" runat="server" Text="更新"></asp:Button></FORM>
</webui:ContentRegion>
</webui:ManagePage>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?