list.aspx
来自「这是asp.net^和Visual C++Sharp编写的串并口通讯的书籍 源代」· ASPX 代码 · 共 52 行
ASPX
52 行
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="list.aspx.cs" Inherits="manage_list" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>无标题页</title>
<link href="../css/css.css" rel="stylesheet" type="text/css" />
</head>
<body style="margin-top: 0px; padding-top: 0px;">
<form id="form1" runat="server">
<div>
</div>
<table style="width: 511px" class="css">
<tr>
<td style="width: 305px" align="center">
输入关键字:</td>
<td style="width: 403px" align="center">
<asp:TextBox ID="TextBox1" runat="server" CssClass="css" Width="232px"></asp:TextBox>
<asp:DropDownList ID="DropDownList1" runat="server" CssClass="css" Width="78px">
<asp:ListItem>时政要闻</asp:ListItem>
<asp:ListItem>经济动向</asp:ListItem>
<asp:ListItem>世界军事</asp:ListItem>
<asp:ListItem>科学教育</asp:ListItem>
<asp:ListItem>法治道德</asp:ListItem>
<asp:ListItem>社会现象</asp:ListItem>
<asp:ListItem>体育世界</asp:ListItem>
<asp:ListItem>时尚娱乐</asp:ListItem>
</asp:DropDownList></td>
<td style="width: 4px">
<asp:Button ID="cmdSearch" runat="server" Height="20px" OnClick="cmdSearch_Click"
Text="站内搜索" /></td>
</tr>
<tr>
<td colspan="3">
<asp:GridView ID="GridView1" runat="server" AllowPaging="True" AutoGenerateColumns="False"
CellSpacing="1" Height="1px" PageSize="26" Width="500px" CssClass="txt" OnPageIndexChanging="GridView1_PageIndexChanging" OnRowDeleting="GridView1_RowDeleting" OnRowDataBound="GridView1_RowDataBound">
<Columns>
<asp:BoundField DataField="ID" HeaderText="ID" />
<asp:BoundField DataField="title" HeaderText="新闻标题" />
<asp:BoundField DataField="Type" HeaderText="新闻类别" />
<asp:BoundField DataField="IssueDate" HeaderText="发布日期" />
<asp:CommandField ShowDeleteButton="True" />
</Columns>
</asp:GridView>
</td>
</tr>
</table>
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?