温馨提示:代码在线浏览功能只能做为源码浏览参考,不能展示项目的全部,如果想更进一步了解该代码请下载:简单多功能投票/调查系统源码
当前文件路径:Votes/ShowVotes.aspx

1<%@ Page Language="C#" AutoEventWireup="true" CodeFile="ShowVotes.aspx.cs" Inherits="ShowVotes" %> 2
<%@ Register Src="~/LinkList.ascx" TagName="LinkList22" TagPrefix="voteLink" %> %> 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
</head> 9
<body style="font-size:12px;"> 10
<form id="form1" runat="server"> 11
<div> 12
<voteLink:LinkList22 runat="server" ID="da" /> 13
<table style="width: 615px; height: 26px"> 14
<tr> 15
<td style="width: 4px"> 16
</td> 17
<td style="width: 596px"> 18
</td> 19
<td> 20
</td> 21
</tr> 22
<tr> 23
<td style="width: 4px; height: 73px"> 24
</td> 25
<td style="width: 596px; height: 73px"> 26
<asp:GridView ID="IDSubjects" runat="server" BackColor="White" BorderColor="#336666" 27
BorderStyle="Double" BorderWidth="3px" CellPadding="4" GridLines="Horizontal" OnRowDataBound="IDSubjects_RowDataBound" 28
Height="91px" Width="584px" AutoGenerateColumns="False" DataKeyNames="s_id"> 29
<FooterStyle BackColor="White" ForeColor="#333333" /> 30
<RowStyle BackColor="White" ForeColor="#333333" /> 31
<SelectedRowStyle BackColor="#339966" Font-Bold="True" ForeColor="White" /> 32
<PagerStyle BackColor="#336666" ForeColor="White" HorizontalAlign="Center" /> 33
<HeaderStyle BackColor="#336666" Font-Bold="True" ForeColor="White" /> 34
<Columns> 35
<asp:TemplateField HeaderText="主题(Subjects)"> 36
<ItemTemplate> 37
<%#DataBinder.Eval(Container.DataItem,"s_name") %> 38
<asp:GridView ID="IDItems" runat="server" BackColor="White" BorderColor="#336666" 39
BorderStyle="Double" BorderWidth="3px" CellPadding="4" GridLines="Horizontal" 40
Height="18px" Width="692px" AutoGenerateColumns="False"> 41
<Columns> 42
<asp:TemplateField HeaderText="投票名称(Items)"> 43
<ItemTemplate> 44
<%#DataBinder.Eval(Container.DataItem,"i_name") %> 45
</ItemTemplate> 46
</asp:TemplateField> 47
<asp:TemplateField HeaderText="投票票数(Items)"> 48
<ItemTemplate> 49
<%#DataBinder.Eval(Container.DataItem,"i_count") %> 50
</ItemTemplate> 51
</asp:TemplateField> 52
</Columns> 53
</asp:GridView> 54
55
</ItemTemplate> 56
</asp:TemplateField> 57
</Columns> 58
</asp:GridView> 59
</td> 60
<td style="height: 73px"> 61
</td> 62
</tr> 63
<tr> 64
<td style="width: 4px"> 65
</td> 66
<td style="width: 596px"> 67
</td> 68
<td> 69
</td> 70
</tr> 71
</table> 72
73
</div> 74
</form> 75
</body> 76
</html> 77




