ASP.net中RadioButtonList控件出现的这个问题怎么解决?急! 20

SqlConnectioncon=newSqlConnection("datasource=.;initialcatalog=SMS;IntegratedSecurity... SqlConnection con = new SqlConnection("data source=.;initial catalog=SMS;Integrated Security=true");

con.Open();
string sql;

if (RadioButtonList.SelectedValue ==“”)
{
sql = "select * from Student order by Stuid";

}
else
{
sql = "select * from Student order by Stuname";

}
SqlDataAdapter da = new SqlDataAdapter(sql, con);
DataSet ds = new DataSet();
da.Fill(ds);
GridView1.DataSource = ds;
GridView1.DataBind();
con.Close();
我在CliCK中输入下面的代码 老是提醒我说没有RadioButtonList这个控件,但是这个控件明显就在页面里存在着,重新拖放,换该页面都试过了,就是不行,想请教高手们来给我指导一下,谢谢!
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data;
using System.Data.SqlClient;

public partial class sna : System.Web.UI.Page
{
protected void Button1_Click(object sender, EventArgs e)
{
SqlConnection con = new SqlConnection("data source=.;initial catalog=SMS;Integrated Security=true");
con.Open();
string sql;
if (RadioButtonList1.SelectedValue ==“sno”)//RadioButton里面有两个值:sno sna
{
sql = "select * from Student order by Stuid";
}
else
{
sql = "select * from Student order by Stuname";
}
SqlDataAdapter da = new SqlDataAdapter(sql, con);
DataSet ds = new DataSet();
da.Fill(ds);
GridView1.DataSource = ds;
GridView1.DataBind();
con.Close();
}
}
展开
 我来答
printf59277
2010-12-10 · TA获得超过1080个赞
知道大有可为答主
回答量:1812
采纳率:33%
帮助的人:1282万
展开全部
这样的话。可以把你ASPX页面的代码传上来看下吗?
百度网友9da38b9
2010-12-09 · TA获得超过303个赞
知道小有建树答主
回答量:182
采纳率:0%
帮助的人:151万
展开全部
RadioButtonList这个和页面里的ID的值是一样的吗?
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
Arthurguo88
2010-12-09 · 超过31用户采纳过TA的回答
知道答主
回答量:95
采纳率:0%
帮助的人:72.7万
展开全部
你的RadioButtonList1 里都有什么东西哦。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式