ASP.net中,通过文本框输入值来查询数据库,我的代码哪里错了?

publicpartialclassCPinformation:System.Web.UI.Page{DataSetGetDataSet(stringname){SqlC... public partial class CPinformation : System.Web.UI.Page
{
DataSet GetDataSet(string name) {
SqlConnection mycon = new SqlConnection();
mycon.ConnectionString = "Data source=YC-PC; Initial Catalog=餐厅管理系统表;Integrated Security=True";
mycon.Open();
SqlCommand selectCMD = new SqlCommand("select code from CPxx where code='" + TextBox1.Text.Trim() + "'", mycon);
SqlDataAdapter custDA = new SqlDataAdapter();
custDA.SelectCommand = selectCMD;
DataSet custDS = new DataSet();
custDA.Fill(custDS, "CPxx");
mycon.Close();
return custDS;

}
protected void Page_Load(object sender, EventArgs e)
{

}

protected void GridView1_SelectedIndexChanged(object sender, EventArgs e)
{

}
protected void Button1_Click(object sender, EventArgs e)
{
string name = TextBox1.Text.ToString();
DataSet ds = GetDataSet(name);
GridView1.DataSource = ds.Tables["CPxx"];
GridView1.DataBind();

}
}
展开
 我来答
sun_rain_ice
2013-11-04 · TA获得超过1419个赞
知道小有建树答主
回答量:1286
采纳率:0%
帮助的人:1036万
展开全部
你这个name传到函数GetDataSet里面,但是没有用到,反而再去读TextBox1.Text。。。
你设一下断点,看看返回的datasource是不是你要的,就知道哪里出问题了
百度网友6bfb3f7
2013-11-04 · 超过29用户采纳过TA的回答
知道答主
回答量:91
采纳率:50%
帮助的人:42.8万
展开全部
GridView1.DataSource = GetDataSet(name); Catalog=餐厅管理系统表;
最好别出现中文
追问
能不能说的再详细一点
追答
你报的什么错
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式