朋友能帮我解决一下,dropdownlist绑定数据库之后选择一项在下面的label或者table里面现实出查询内容?

 我来答
markqzzh
2012-05-22 · 超过11用户采纳过TA的回答
知道答主
回答量:51
采纳率:0%
帮助的人:32.1万
展开全部
和你提的“dropdownlist选择后用textbox取出value值”这个问题一样啊
dropdownlist的SelectedIndexChanged 或者 TextChanged 事件里面写
label.Text=''
绑定数据参考下面的代码
DataSet ds = GetData(queryString);
if (ds.Tables.Count > 0)
{
dropdownlis.DataSource = ds;
dropdownlis.DataBind();
}

DataSet GetData(String queryString)
{

// Retrieve the connection string stored in the Web.config file.
String connectionString = ConfigurationManager.ConnectionStrings["NorthWindConnectionString"].ConnectionString;

DataSet ds = new DataSet();

try
{
// Connect to the database and run the query.
SqlConnection connection = new SqlConnection(connectionString);
SqlDataAdapter adapter = new SqlDataAdapter(queryString, connection);

// Fill the DataSet.
adapter.Fill(ds);

}
catch(Exception ex)
{

// The connection failed. Display an error message.
Message.Text = "Unable to connect to the database.";

}

return ds;

}
来自:求助得到的回答
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
wuyajungo
2012-05-22 · TA获得超过2877个赞
知道小有建树答主
回答量:152
采纳率:0%
帮助的人:80.6万
展开全部
首先,请设置dropdownlist的SelectedIndexChanged事件里边将查询出的内容绑定label或table里。然后AutoPostBack="True" 。
完成!
更多追问追答
追问
能说详细点吗帅哥,就是我的table是要预先定义和绑定的数据库里面的行数和列数是一样的吗?
追答
table可以用GridView代替。绑定数据源。设置好每一列绑定的属性就好了啊。行数你查出多少就会显示多少行,列数你肯定得知道你要显示哪些列了。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式