一个是 提交 一个是转向按妞
在提交里面我查询出了一个字段里面的一个变量值B,c 我在转向里面能否直接用这个变量
Response.Redirect("*?id='"+b+"'&c='"+c+"'");
这里的红色的BC能调用到吗 或者这里的B C如果在PAGE——LOAD里面能调用吗
如果二个都不能
那我想调用怎么实现呢 指教
谢谢
protected void Button1_Click(object sender, EventArgs e)
{
SqlConnection con = DB.createConn();
con.Open();
SqlCommand cmd = new SqlCommand("select votid from vote2 where id='" + this.RadioButtonList1.SelectedValue + "'", con);
string votsum = Convert.ToString(cmd.ExecuteScalar());
//下面还有程序。。。。。。。。。。。。。
}
protected void Button2_Click(object sender, EventArgs e)
{
Response.Redirect("show_poll.aspx?votsum='"+votsum+"'");
}
二个Button2_Click 能调用啊 下面 Button2_Click 里面的votsum 能调用Button1_Click 里面的VOTSUM吗
我这里这样怎么有错误啊
还有如果VOTSUM 不在Button1_Click 里面 在PAGE——LOAD里面能不能调用啊
我怎么调用都有错呢帮忙啊