温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:Asp.net简单投票系统源码
当前文件:
SimplePoll/poll.aspx[1K,2009-6-12 11:54:08],打开代码结构图
SimplePoll/poll.aspx[1K,2009-6-12 11:54:08],打开代码结构图1<%@ Page Language="C#" AutoEventWireup="true" CodeFile="poll.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
<html xmlns="http://www.w3.org/1999/xhtml" > 6
<head runat="server"> 7
<title>网上投票系统|-51aspx.com</title> 8
</head> 9
<body> 10
<form id="form1" runat="server"> 11
<div> 12
中美战略对话后,你认为中美关系会进入蜜月期吗?<br /> 13
<br /> 14
<table style="width: 370px"> 15
<tr> 16
<td style="width: 100px; height: 10px"> 17
<asp:RadioButtonList ID="RadioButtonList1" runat="server"> 18
</asp:RadioButtonList></td> 19
</tr> 20
<tr> 21
<td style="width: 100px"> 22
<asp:Button ID="Button1" runat="server" Text="投票" OnClick="Button1_Click" /></td> 23
</tr> 24
</table> 25
26
27
</div> 28
</form> 29
<a href="http://www.51aspx.com/" target="_blank" title="Asp.net源码下载专业站">download from 51aspx.com</a> 30
31
</body> 32
</html> 33




