温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:大学生调查投票系统源码
当前文件:
StudentVote/Index.aspx,打开代码结构图
StudentVote/Index.aspx,打开代码结构图1<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Index.aspx.cs" Inherits="_Default" %> 2
3
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 4
5
<link href="CSS/StyleSheet.css" /> 6
7
<html xmlns="http://www.w3.org/1999/xhtml" > 8
<head runat="server"> 9
<title>主页</title> 10
<link href="CSS/StyleSheet.css" rel="stylesheet" type="text/css"/> 11
</head> 12
<body style="color: #000000; background-color: #ffffff; text-align: center; vertical-align: middle;" class="CSS/StyleSheet.css"> 13
<form id="form1" runat="server"> 14
<table style="width: 755px; background-image: url(Images/index.jpg); height: 473px; background-repeat: no-repeat;" cellpadding="0" cellspacing="0"> 15
<tr> 16
<td colspan="2" rowspan="3" style="width: 399px"> 17
<table style="width: 279px; height: 168px;"> 18
<tr> 19
<td> 20
</td> 21
<td> 22
投票系统主要功能简介</td> 23
<td> 24
</td> 25
</tr> 26
<tr> 27
<td colspan="3" rowspan="2" style="height: 75px; text-align: left"> 28
1,该系统管理员登录后,可向数据库中添 加投票选项。<br /> 29
30
2,系统能够自动统计投票数目,并将其转化 为百分比和图像,使投票结果更直观形象。<br /> 31
3,登录后,能够对选项进行编辑,删除。<br /> 32
4,该系统由吉林省明日科技公司开发,仅供 参考学习。</td> 33
</tr> 34
<tr> 35
</tr> 36
</table> 37
</td> 38
<td style="height: 43px; width: 346px;"> 39
</td> 40
</tr> 41
<tr> 42
<td style="width: 346px; height: 93px;" class="CSS/StyleSheet.css"> 43
<table style="width: 342px" cellpadding="0" cellspacing="0"> 44
<tr> 45
<td colspan="4" style="width: 337px; height: 10px"> 46
<a href=Login.aspx style="color: black"><span style="font-size: 9pt; color: white">添加新项</span></a><span 47
style="font-size: 9pt; color: orangered;"> </span> 48
</td> 49
</tr> 50
<tr> 51
<td colspan="4" style="width: 337px; height: 13px"> 52
</td> 53
</tr> 54
<tr> 55
<td colspan="4" rowspan="2" style="width: 337px; height: 16px;"> 56
<table style="width: 336px; height: 15px;" cellpadding="0" cellspacing="0"> 57
<tr> 58
<td colspan="3" rowspan="3" style="color: black; height: 23px; text-align: left;"> 59
<%=GetList()%> 60
</td> 61
</tr> 62
<tr> 63
</tr> 64
<tr> 65
</tr> 66
</table> 67
</td> 68
</tr> 69
<tr> 70
</tr> 71
<tr> 72
<td colspan="4" rowspan="1" style="width: 337px; text-align: right; height: 10px;"> 73
<a href= AllVote.aspx>查看所有主题>></a> 74
</td> 75
</tr> 76
</table> 77
</td> 78
</tr> 79
<tr> 80
<td style="height: 318px; width: 346px;"> 81
</td> 82
</tr> 83
</table> 84
</form> 85
</body> 86
</html> 87



