本文介绍了从数据库中检索值并显示在下拉列表中。的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

嗨先生;



我希望当我点击搜索按钮时,会在组合框中显示或设置值。从数据库中检索的值?

请解决我的问题...



提前谢谢...

hi sir;

i want that when i click the search button the value are display or set in combo box. The values retrieved from database?
please solve my problem...

Thanks in advance...

推荐答案

SELECT COL1,COL2,COL3 FROM TABLE1 WHERE COL1 LIKE '%searchedresult%'




 protected void btnSearch_OnClick(object sender, EventArgs e)
    {
        Bind_Projects();
    }

protected void Bind_Projects()
    {
        string Search = txtSearch.Text.Trim();
        DataSet dsProj = //what do you want you fetch taht information                           
        ddlSearch.DataSource = dsProj;
        ddlSearch.DataTextField = "Proj_Description";
        ddlSearch.DataValueField = "Proj_Code";
        ddlSearch.DataBind();
        ddlSearch.Items.Insert(0, "---Select---");
    }


这篇关于从数据库中检索值并显示在下拉列表中。的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-12 18:28