温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:内文广告管理系统V1.1版源码
当前文件:
TextAd/admin1.aspx,打开代码结构图
TextAd/admin1.aspx,打开代码结构图1<%@ Page Language="C#" AutoEventWireup="true" CodeFile="admin1.aspx.cs" Inherits="admin1" %> 2
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 3
<html xmlns="http://www.w3.org/1999/xhtml" > 4
<head runat="server"> 5
<title>管理页面---关键字管理</title> 6
</head> 7
<body> 8
<form id="form1" runat="server"> 9
<div><a href ="admin2.aspx">广告内容管理</a><br /><br /> 10
<asp:GridView id="GridView1" runat="server" AutoGenerateColumns="False" OnPageIndexChanging="GridView1_PageIndexChanging" OnRowCommand="GridView1_RowCommand" AllowPaging="True" CellPadding="4" ForeColor="#333333" GridLines="None"> 11
<Columns> 12
<asp:BoundField DataField="id" HeaderText="编号" /> 13
<asp:BoundField DataField="name" HeaderText="关键字" /> 14
<asp:BoundField DataField="notes" HeaderText="备注" /> 15
<asp:TemplateField HeaderText="删除"> 16
<ItemTemplate> 17
<asp:LinkButton ID="LinkButton1" CommandName ="del" runat="server" CommandArgument='<%# Bind("id") %>'>删除</asp:LinkButton> 18
</ItemTemplate> 19
</asp:TemplateField> 20
</Columns> 21
<FooterStyle BackColor="#5D7B9D" Font-Bold="True" ForeColor="White" /> 22
<RowStyle BackColor="#F7F6F3" ForeColor="#333333" /> 23
<EditRowStyle BackColor="#999999" /> 24
<SelectedRowStyle BackColor="#E2DED6" Font-Bold="True" ForeColor="#333333" /> 25
<PagerStyle BackColor="#284775" ForeColor="White" HorizontalAlign="Center" /> 26
<HeaderStyle BackColor="#5D7B9D" Font-Bold="True" ForeColor="White" /> 27
<AlternatingRowStyle BackColor="White" ForeColor="#284775" /> 28
</asp:GridView> 29
<br /> 30
关键字:<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox><br /> 31
备 注:<asp:TextBox ID="TextBox2" runat="server"></asp:TextBox> 32
<br /> 33
<br /> 34
<asp:Button ID="Button1" runat="server" Text="添 加" OnClick="Button1_Click" /> 35
</div> 36
</form><a href="http://www.51aspx.com/" target="_blank">download from 51aspx.com(Asp.net源码下载专业站)</a> 37
</body> 38
</html> 39




