ASP.NET投票系统 80
要求:1.上面一张页面的数据要用数据库形式显示点击投票会跳出下面一张投票的页面2.实现可以投票的功能点击投票弹出上一张页面但是数据会随便投票改动点击返回则返回上面一张页面...
要求: 1.上面一张页面的数据要用数据库形式显示 点击投票会跳出下面一张投票的页面
2.实现可以投票的功能 点击投票 弹出上一张页面 但是数据会随便投票改动 点击返回则返回上面一张页面
麻烦发到691994251@qq.com 我看过后会给分 展开
2.实现可以投票的功能 点击投票 弹出上一张页面 但是数据会随便投票改动 点击返回则返回上面一张页面
麻烦发到691994251@qq.com 我看过后会给分 展开
展开全部
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
SqlConnection conn = new SqlConnection("Data source=localhost;Initial catalog=webvotedb;Persist security info=true;user id=sa");
string sqlstr = "select * from votes";
SqlDataAdapter sda = new SqlDataAdapter(sqlstr, conn);
DataSet ds = new DataSet();
sda.Fill(ds, "votes");
CheckBoxList1.DataSource = ds;
CheckBoxList1.DataTextField = "item";
CheckBoxList1.DataValueField = "voteid";
CheckBoxList1.DataBind();
}
}
这样就可以了,
应为页面回发服务器以后又会执行一次代码,加载事件的代码再次被执行,你之前选的就会消失,下面判断的时候就会一个都没选中,就这样了
{
if (!IsPostBack)
{
SqlConnection conn = new SqlConnection("Data source=localhost;Initial catalog=webvotedb;Persist security info=true;user id=sa");
string sqlstr = "select * from votes";
SqlDataAdapter sda = new SqlDataAdapter(sqlstr, conn);
DataSet ds = new DataSet();
sda.Fill(ds, "votes");
CheckBoxList1.DataSource = ds;
CheckBoxList1.DataTextField = "item";
CheckBoxList1.DataValueField = "voteid";
CheckBoxList1.DataBind();
}
}
这样就可以了,
应为页面回发服务器以后又会执行一次代码,加载事件的代码再次被执行,你之前选的就会消失,下面判断的时候就会一个都没选中,就这样了
追问
能做一个完整的发我邮箱么 会给你分的
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询