📄 introductionlist.aspx
字号:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="IntroductionList.aspx.cs" Inherits="IntroductionList" %>
<%@ Register Src="Footer.ascx" TagName="Footer" TagPrefix="uc3" %>
<%@ Register Src="SideBar.ascx" TagName="SideBar" TagPrefix="uc1" %>
<%@ Register Src="Header.ascx" TagName="Header" TagPrefix="uc2" %>
<!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>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<title>Welcome to Surance Center</title>
<meta content="" name="keywords" />
<meta content="" name="description" />
<link href="default.css" media="screen" rel="stylesheet" type="text/css" />
</head>
<body>
<form id="form1" runat="server">
<!-- start header -->
<uc2:Header ID="Header1" runat="server" />
<!-- end header -->
<!-- start page -->
<div id="page">
<!-- start content -->
<div id="content">
<h1 class="pagetitle">
Introduction List</h1>
<div class="post">
<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" OnRowCommand="GridView1_RowCommand"
OnRowDataBound="GridView1_RowDataBound" Width="80%">
<Columns>
<asp:BoundField DataField="Title" HeaderText="Title"/>
<asp:BoundField DataField="Category" HeaderText="Category"/>
<asp:BoundField DataField="Hit" HeaderText="Hit" />
<asp:BoundField DataField="CreateTime" HeaderText="CreateTime" />
<asp:ButtonField HeaderText="Edit" Text="Edit" CommandName="Edit">
<ItemStyle HorizontalAlign="Center" Width="15%" />
</asp:ButtonField>
<asp:ButtonField HeaderText="Delete" Text="Delete" CommandName="Del">
<ItemStyle HorizontalAlign="Center" Width="15%" />
</asp:ButtonField>
</Columns>
</asp:GridView>
</div>
</div>
<!-- end content -->
<!-- start sidebar -->
<uc1:SideBar ID="SideBar1" runat="server" />
<!-- end sidebar -->
<div style="clear: both;">
</div>
</div>
<!-- end page -->
<uc3:Footer ID="Footer1" runat="server" />
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -