<tr>
<td style="width: 32px; height: 18px;">
<asp:Label ID="Label1" runat="server" Text="选项1" Width="61px"></asp:Label></td>
<td style="width: 85px; height: 18px;">
<asp:Image ID="Image3" runat="server" ImageUrl="~/Image/HUANG.BMP" Width="<%#vote1%>" Height="12px"/>
<asp:Label ID="lblVote1" runat="server" EnableTheming="True" Text="<%# GetVotePercent(vote1)%>" Width="4px"></asp:Label></td>
<td style="width: 33px; height: 18px;">
<asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="投票1" /></td>
</tr>
protected void Button1_Click(object sender, EventArgs e)
{
vote1 += 1;
this.DataBind();
}
protected string GetVotePercent(int vote)
{
int sumVote = vote1 + vote2 + vote3;
if (sumVote == 0)
{
return "0%";
}
else
{
decimal percent = 100 * (Convert.ToDecimal(vote) / Convert.ToDecimal(sumVote));
return percent.ToString("n2") + "%";
}
}