资源简介
这是用.net写的一个在线投票系统,当对选中的任务进行投票时,点击查看能够看到相应的票数和百分比。
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data;
public partial class Vote : System.Web.UI.Page
{
protected void Page_Load(object sender EventArgs e)
{
}
private void VoteAdd()
{
try
{
DataSet voteds = new DataSet();
voteds.Readxml(Server.MapPath(“Votexml.xml“));
if (rbtnKh.Checked)
voteds.Tables[0].Rows[0][1] = Convert.ToInt32(voteds.Tables[0].Rows[0][1]) + 1;
if (rbtnLzm.Checked)
voteds.Tables[0].Rows[1][1] = Convert.ToInt32(voteds.Tables[0].Rows[1][1]) + 1;
if (rbtnHx.Checked)
voteds.Tables[0].Rows[2][1] = Convert.ToInt32(voteds.Tables[0].Rows[2][1]) + 1;
if (rbtnGzj.Checked)
voteds.Tables[0].Rows[3][1] = Convert.ToInt32(voteds.Tables[0].Rows[3][1]) + 1;
voteds.Writexml(Server.MapPath(“Votexml.xml“));
Response.Write(“ript>alert(‘投票成功!‘) ript>“);
}
catch
{
Response.Write(“ript>alert(‘投票失败!‘) ript>“);
}
}
protected void Button1_Click(object sender EventArgs e)
{
this.VoteAdd();
}
protected void Button2_Click(object sender EventArgs e)
{
Response.Redirect(“VoteResult.aspx“);
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 2822 2007-12-11 11:34 ch10\image\康辉.jpg
文件 2658 2007-12-11 11:34 ch10\image\李梓荫.jpg
文件 2144 2007-12-11 11:34 ch10\image\海霞.jpg
文件 2888 2007-12-11 11:34 ch10\image\郭志坚.jpg
文件 4443 2015-05-24 23:08 ch10\Vote.aspx
文件 1459 2015-05-24 23:32 ch10\Vote.aspx.cs
文件 4830 2015-05-25 09:40 ch10\VoteResult.aspx
文件 1506 2015-05-24 23:34 ch10\VoteResult.aspx.cs
文件 364 2015-05-25 09:41 ch10\Votexm
文件 3147 2015-05-24 23:16 ch10\Web.config
文件 449 2015-05-24 21:51 ch10\xm
文件 2696 2015-05-24 21:54 ch10\xm
文件 1405 2015-05-24 21:51 ch10\xm
目录 0 2015-06-04 16:55 ch10\image
目录 0 2015-06-04 16:55 ch10
----------- --------- ---------- ----- ----
30811 15
评论
共有 条评论