温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:入门级的投票系统源码
当前文件:
QuikStartVote/MyController/vote.ascx[942B,2009-6-12 11:52:49],打开代码结构图
QuikStartVote/MyController/vote.ascx[942B,2009-6-12 11:52:49],打开代码结构图1<%@ Control Language="C#" AutoEventWireup="true" CodeFile="vote.ascx.cs" Inherits="MyController_vote" %> 2
<table border="0" cellpadding="0" cellspacing="0" style="width: 500px"> 3
<tr> 4
<td style="height: 30px; text-align: center;"> 5
<asp:Label ID="lblTitle" runat="server" Text="标题" Width="164px"></asp:Label></td> 6
</tr> 7
<tr> 8
<td style="height: 200px"> 9
<asp:RadioButtonList ID="rBLVote" runat="server" Height="18px" Width="78px"> 10
</asp:RadioButtonList></td> 11
</tr> 12
<tr> 13
<td style="height: 30px; text-align: center;"> 14
<asp:Button ID="btntijiao" runat="server" Text="提交" OnClick="btntijiao_Click" /> 15
<asp:Button ID="btnResult" runat="server" Text="结果" OnClick="btnResult_Click" /> 16
<asp:Label ID="lblMessage" runat="server" Text="投票情况" Width="301px"></asp:Label></td> 17
</tr> 18
</table> 19





