📄 loglist.ascx
字号:
<%@ Control Language="C#" AutoEventWireup="true" CodeFile="loglist.ascx.cs" Inherits="control_Admin_loglist" %>
<br />
<div class="SubItemHead">
管理员操作日志</div>
<br />
<asp:GridView ID="GridView1" runat="server" AllowPaging="True" AllowSorting="True"
AutoGenerateColumns="False" DataSourceID="ObjectDataSource1" PageSize="5" Width="100%">
<Columns>
<asp:BoundField DataField="adminID" HeaderText="管理员编号" Visible="false">
<HeaderStyle ></HeaderStyle>
</asp:BoundField>
<asp:BoundField DataField="UserName" HeaderText="管理员">
<HeaderStyle ></HeaderStyle>
</asp:BoundField>
<asp:BoundField DataField="logInfo" HeaderText="操作信息">
<HeaderStyle></HeaderStyle>
</asp:BoundField>
<asp:BoundField DataField="logDate" HeaderText="操作时间">
<HeaderStyle ></HeaderStyle>
</asp:BoundField>
</Columns>
<PagerSettings FirstPageText="&lt;首页&gt;" LastPageText="&lt;末页&gt;"
Mode="NumericFirstLast" NextPageText="下一页>>" PreviousPageText="<<上一页" />
<PagerStyle HorizontalAlign="Left" />
</asp:GridView>
<asp:ObjectDataSource ID="ObjectDataSource1" runat="server" SelectMethod="GetLog"
TypeName="DataBusiness.Log"></asp:ObjectDataSource>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -