温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:明日供求信息网源码
当前文件:
MingriGongQiu/BackGround/LeaguerInfoDelete.aspx,打开代码结构图
MingriGongQiu/BackGround/LeaguerInfoDelete.aspx,打开代码结构图1<%@ Page Language="C#" AutoEventWireup="true" CodeFile="LeaguerInfoDelete.aspx.cs" Inherits="BackGround_LeaguerInfoDelete" %> 2
3
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 4
5
<html xmlns="http://www.w3.org/1999/xhtml" > 6
<head runat="server"> 7
<title>无标题页</title> 8
<link href="../Css/StyleSheet.css" rel="stylesheet" type="text/css" /> 9
</head> 10
<body> 11
<form id="form1" runat="server"> 12
<div> 13
<table style="width: 764px; height: 56px" cellpadding="0" cellspacing="0"> 14
<tr> 15
<td style="width: 759px; height: 12px" align="right"> 16
<asp:RadioButton ID="rdoBtnFalse" runat="server" Text="过期信息" AutoPostBack="True" GroupName="info" OnCheckedChanged="rdoBtnFalse_CheckedChanged" /> 17
<asp:RadioButton ID="rdoBtnTrue" runat="server" Text="未过期信息" AutoPostBack="True" GroupName="info" OnCheckedChanged="rdoBtnTrue_CheckedChanged" /> 18
<asp:RadioButton ID="rdoBtnAll" runat="server" Text="显示全部信息" AutoPostBack="True" Checked="True" GroupName="info" OnCheckedChanged="rdoBtnAll_CheckedChanged" /></td> 19
</tr> 20
<tr> 21
<td style="width: 759px; height: 67px"> 22
<asp:GridView ID="GridView1" runat="server" AllowPaging="True" AutoGenerateColumns="False" 23
CellPadding="3" ForeColor="#333333" GridLines="None" Height="1px" OnPageIndexChanging="GridView1_PageIndexChanging" 24
OnRowDataBound="GridView1_RowDataBound" OnRowDeleting="GridView1_RowDeleting" 25
OnSelectedIndexChanging="GridView1_SelectedIndexChanging" Width="775px" PageSize="20"> 26
<PagerSettings FirstPageText="第一页" LastPageText="末一页" Mode="NextPreviousFirstLast" 27
NextPageText="下一页" PreviousPageText="上一页" /> 28
<FooterStyle BackColor="#1C5E55" Font-Bold="True" ForeColor="White" /> 29
<Columns> 30
<asp:BoundField DataField="type" HeaderText="信息类型"> 31
<ItemStyle Width="60px" /> 32
<HeaderStyle HorizontalAlign="Left" Width="60px" /> 33
</asp:BoundField> 34
<asp:BoundField DataField="title" HeaderText="信息标题"> 35
<ItemStyle Width="100px" /> 36
<HeaderStyle HorizontalAlign="Left" Width="100px" /> 37
</asp:BoundField> 38
<asp:BoundField DataField="info" HeaderText="信息内容"> 39
<HeaderStyle HorizontalAlign="Left" /> 40
</asp:BoundField> 41
<asp:BoundField DataField="LinkMan" HeaderText="联系人"> 42
<ItemStyle Width="60px" /> 43
<HeaderStyle HorizontalAlign="Left" Width="60px" /> 44
</asp:BoundField> 45
<asp:BoundField DataField="tel" HeaderText="联系电话"> 46
<ItemStyle Width="80px" /> 47
<HeaderStyle HorizontalAlign="Left" /> 48
</asp:BoundField> 49
<asp:BoundField DataField="showDay" HeaderText="有效时间"> 50
<ItemStyle Width="60px" /> 51
<HeaderStyle HorizontalAlign="Left" Width="80px" /> 52
</asp:BoundField> 53
<asp:CheckBoxField DataField="checkState" HeaderText="推荐"> 54
<HeaderStyle HorizontalAlign="Left" Width="40px" /> 55
</asp:CheckBoxField> 56
<asp:CommandField SelectText="详细信息" ShowSelectButton="True"> 57
<ItemStyle Width="60px" /> 58
<HeaderStyle Width="60px" /> 59
</asp:CommandField> 60
<asp:CommandField ShowDeleteButton="True"> 61
<HeaderStyle HorizontalAlign="Left" Width="40px" /> 62
<ItemStyle Width="40px" /> 63
</asp:CommandField> 64
</Columns> 65
<RowStyle BackColor="#E3EAEB" /> 66
<EditRowStyle BackColor="#7C6F57" /> 67
<SelectedRowStyle BackColor="#C5BBAF" Font-Bold="False" ForeColor="#333333" /> 68
<PagerStyle BackColor="#666666" ForeColor="White" HorizontalAlign="Center" /> 69
<HeaderStyle BackColor="#1C5E55" Font-Bold="True" ForeColor="White" /> 70
<AlternatingRowStyle BackColor="White" /> 71
</asp:GridView> 72
</td> 73
</tr> 74
</table> 75
76
</div> 77
</form> 78
</body> 79
</html> 80



