管理员界面用户管理
用户管理
用户管理只有一个页面如图所示
图 用户管理页面
ST_Admin_usermanaspx的主要HTML代码如程序所示代码中的GridView控件用来对用户信息进行查看修改和删除操作
程序 ST_Admin_usermanaspx
<form id=Form method=post runat=server>
<asp:GridView id=GridView runat=server Width=%
AutoGenerateColumns=False BorderColor=#EEFF
BorderStyle=None BorderWidth=px BackColor=White
DataKeyNames=ST_ID
CellPadding= GridLines=Horizontal
onrowcancelingedit=GridView_RowCancelingEdit
onrowdeleting=GridView_RowDeleting
onrowediting=GridView_RowEditing
onrowupdating=GridView_RowUpdating>
<SelectedRowStyle FontBold=True ForeColor=#FFF
BackColor=#AC></SelectedRowStyle>
<AlternatingRowStyle
BackColor=#FFF></AlternatingRowStyle>
<RowStyle ForeColor=#ACC BackColor=#EEFF></RowStyle>
<HeaderStyle FontBold=True ForeColor=Red
BackColor=#ACC></HeaderStyle>
<FooterStyle ForeColor=#ACC
BackColor=#BCDE></FooterStyle>
<Columns>
<asp:BoundField DataField=ST_ID ReadOnly=True
HeaderText=ID></asp:BoundField>
<asp:BoundField DataField=ST_username HeaderText=用户名>
</asp:BoundField>
<asp:BoundField DataField=ST_userpassword HeaderText=
密码></asp:BoundField>
<asp:BoundField DataField=ST_userrname ReadOnly=True
HeaderText=真名></asp:BoundField>
<asp:BoundField DataField=ST_usertel ReadOnly=True
HeaderText=电话></asp:BoundField>
<asp:BoundField DataField=ST_useraddr ReadOnly=True
HeaderText=地址></asp:BoundField>
<asp:BoundField DataField=ST_userclass HeaderText=权限>
</asp:BoundField>
<asp:CommandField ShowEditButton=True />
<asp:ButtonField Text=删除
CommandName=Delete></asp:ButtonField>
</Columns>
<PagerSettings Mode=Numeric />
</asp:GridView>
</form>
【代码说明】代码第行是当前GridView控件的主键标识代码第~行是用户操作GridView控件时触发的控件包括更新取消更新编辑和删除个事件代码第~行是绑定在GridView上要显示的列代码第~行是一个删除按钮(注意其CommandName属性如果设置为Delete则当用户单击此按钮时自动触发GridView的onrowdeleting事件)
返回目录ASPNET项目开发指南
编辑推荐
ASPNET MVC 框架揭秘
ASPNET开发宝典
ASP NET开发培训视频教程