📄 editlistinfo.aspx
字号:
<%@ Page language="c#" Inherits="eInfo.sys.EditListInfo" CodeFile="EditListInfo.aspx.cs" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<HTML>
<HEAD>
<TITLE>EditListInfo</TITLE>
</HEAD>
<LINK href="../css/sys.css" type="text/css" rel="stylesheet">
<form id="Document" method="post" runat="server">
<table width="95%" align="center">
<tr>
<td width="80%">查询条件:<asp:label id="lblSearch" runat="server" ForeColor="Red"></asp:label>
</td>
<td align="right"><A href="AddInfo.aspx">添加</A> | <A href="SchInfo.aspx?type=modify">修改</A>
| <A href="SchInfo.aspx">查询</A></td>
</tr>
<tr>
<td colSpan="2"><ASP:DATAGRID id="MyDataGrid" style="WORD-BREAK: break-all" runat="server" PageSize="20" AllowSorting="True"
AllowPaging="True" CssClass="border" HeaderStyle-CssClass="title" ItemStyle-CssClass="tdBg" AutoGenerateColumns="False"
Width="100%">
<HeaderStyle Wrap="False" HorizontalAlign="Center" Height="25px"></HeaderStyle>
<Columns>
<asp:BoundColumn Visible="False" DataField="id" SortExpression="id" HeaderText="id">
<HeaderStyle Font-Bold="True" Wrap="False" Width="2%"></HeaderStyle>
<ItemStyle Wrap="False"></ItemStyle>
</asp:BoundColumn>
<asp:BoundColumn DataField="type" SortExpression="type" HeaderText="类型" Visible="true">
<HeaderStyle Font-Bold="True" Wrap="False" Width="15%"></HeaderStyle>
<ItemStyle Wrap="False"></ItemStyle>
</asp:BoundColumn>
<asp:BoundColumn DataField="name" SortExpression="name" HeaderText="名称" Visible="true">
<HeaderStyle Font-Bold="True" Wrap="False" Width="40%"></HeaderStyle>
<ItemStyle Wrap="False"></ItemStyle>
</asp:BoundColumn>
<asp:BoundColumn DataField="Des" SortExpression="Des" HeaderText="描述">
<HeaderStyle Font-Bold="True" Wrap="False" Width="25%"></HeaderStyle>
<ItemStyle Wrap="true"></ItemStyle>
</asp:BoundColumn>
<asp:BoundColumn DataField="FileSize" SortExpression="FileSize" HeaderText="大小(字节)">
<HeaderStyle Font-Bold="True" Wrap="False" Width="5%"></HeaderStyle>
<ItemStyle Wrap="False"></ItemStyle>
</asp:BoundColumn>
<asp:BoundColumn DataField="FileDate" SortExpression="FileDate" HeaderText="时间">
<HeaderStyle Font-Bold="True" Wrap="False" Width="15%"></HeaderStyle>
<ItemStyle Wrap="False"></ItemStyle>
</asp:BoundColumn>
<asp:TemplateColumn HeaderText="修改">
<HeaderStyle Font-Bold="True" Wrap="False"></HeaderStyle>
<ItemStyle HorizontalAlign="Center"></ItemStyle>
<ItemTemplate>
<asp:ImageButton id="ib_modify" runat="server" CausesValidation="False" ImageUrl="../Images/sys/modify.gif"
CommandName="update"></asp:ImageButton>
</ItemTemplate>
</asp:TemplateColumn>
<asp:TemplateColumn HeaderText="删除">
<HeaderStyle Font-Bold="True" Wrap="False"></HeaderStyle>
<ItemStyle HorizontalAlign="Center"></ItemStyle>
<ItemTemplate>
<FONT face="宋体">
<asp:ImageButton id="ib_delete" runat="server" CausesValidation="False" ImageUrl="../Images/sys/delete.gif"
CommandName="delete"></asp:ImageButton></FONT>
</ItemTemplate>
</asp:TemplateColumn>
</Columns>
<PagerStyle Mode="NumericPages" HorizontalAlign="right"></PagerStyle>
</ASP:DATAGRID></td>
</tr>
</table>
</form>
</HTML>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -