温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:明日供求信息网源码
当前文件:
MingriGongQiu/BackGround/CheckInfo.aspx,打开代码结构图
MingriGongQiu/BackGround/CheckInfo.aspx,打开代码结构图1<%@ Page Language="C#" AutoEventWireup="true" CodeFile="CheckInfo.aspx.cs" Inherits="BackGround_CheckInfo" %> 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: 800px; height: 294px" cellpadding="0" cellspacing="0"> 14
<tr> 15
<td style="width: 755px; height: 13px" align="right"> 16
<asp:Label ID="lblPageSum" runat="server" Style="left: 428px; top: 23px;" ></asp:Label> 17
<asp:RadioButton ID="rdoBtnCheckTrue" runat="server" AutoPostBack="True" GroupName="checkState" 18
OnCheckedChanged="rdoBtnCheckTrue_CheckedChanged" Text="已经审核供求信息" /> 19
<asp:RadioButton ID="rdoBtnCheckFalse" runat="server" AutoPostBack="True" GroupName="checkState" 20
OnCheckedChanged="rdoBtnCheckFalse_CheckedChanged" Text="未审核供求信息" /> 21
<asp:RadioButton ID="rdoBtnCheckAll" runat="server" AutoPostBack="True" Checked="True" 22
GroupName="checkState" OnCheckedChanged="rdoBtnCheckAll_CheckedChanged" Text="显示同类型所有供求信息" /> 23
</td> 24
</tr> 25
<tr> 26
<td style="vertical-align: top; width: 755px; height: 1px" align="center"> 27
<asp:GridView ID="GridView1" runat="server" AllowPaging="True" AutoGenerateColumns="False" 28
CellPadding="3" ForeColor="#333333" GridLines="None" Height="1px" OnPageIndexChanging="GridView1_PageIndexChanging" 29
OnRowDataBound="GridView1_RowDataBound" OnRowDeleting="GridView1_RowDeleting" 30
OnSelectedIndexChanging="GridView1_SelectedIndexChanging" Width="800px" PageSize="24"> 31
<PagerSettings FirstPageText="第一页" LastPageText="末一页" Mode="NextPreviousFirstLast" 32
NextPageText="下一页" PreviousPageText="上一页" /> 33
<FooterStyle BackColor="#1C5E55" Font-Bold="True" ForeColor="White" /> 34
<Columns> 35
<asp:BoundField DataField="type" HeaderText="信息类型"> 36
<ItemStyle Width="60px" HorizontalAlign="Left" /> 37
<HeaderStyle HorizontalAlign="Left" /> 38
</asp:BoundField> 39
<asp:BoundField DataField="title" HeaderText="信息标题"> 40
<ItemStyle Width="100px" HorizontalAlign="Left" /> 41
<HeaderStyle HorizontalAlign="Left" /> 42
</asp:BoundField> 43
<asp:BoundField DataField="info" HeaderText="信息内容" > 44
<HeaderStyle HorizontalAlign="Left" /> 45
<ItemStyle HorizontalAlign="Left" /> 46
</asp:BoundField> 47
<asp:BoundField DataField="LinkMan" HeaderText="联系人"> 48
<ItemStyle Width="60px" HorizontalAlign="Left" /> 49
<HeaderStyle HorizontalAlign="Left" /> 50
</asp:BoundField> 51
<asp:BoundField DataField="tel" HeaderText="联系电话"> 52
<ItemStyle Width="80px" HorizontalAlign="Left" /> 53
<HeaderStyle HorizontalAlign="Left" /> 54
</asp:BoundField> 55
<asp:BoundField DataField="checkState" HeaderText="审核状态"> 56
<ItemStyle Width="60px" HorizontalAlign="Left" /> 57
</asp:BoundField> 58
<asp:CommandField DeleteText="详细信息" ShowDeleteButton="True"> 59
<ItemStyle Width="60px" /> 60
</asp:CommandField> 61
<asp:CommandField SelectText="通过/取消" ShowSelectButton="True"> 62
<ItemStyle Width="60px" /> 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



