如何给datagrid中的下拉列表添加数据

web程序中,如何给datagrid中的dropdownlist绑定数据库的数据。希望给出思路和关键代码。谢谢!... web程序中,如何给datagrid中的dropdownlist绑定数据库的数据。
希望给出思路和关键代码。
谢谢!
展开
 我来答
百度网友4e0c6ecfd13
2008-10-15 · TA获得超过7532个赞
知道小有建树答主
回答量:725
采纳率:0%
帮助的人:0
展开全部
先指定数据源,然后读取数据库表中的某一列,再绑定。给你个我最近写的参考一下。
private void Page_Load(object sender, System.EventArgs e)
{
if(!IsPostBack)
{
ds = dc.GetDataSet("select dbo.MstHierarchyBelong1.Belong1Code,dbo.MstHierarchyBelong1.Belong1Name from dbo.MstHierarchyBelong1 where dbo.MstHierarchyBelong1.DeleteKBN <> 1 and dbo.MstHierarchyBelong1.Company_code = 10005");(这里添加你自己的查询语句)
if( ds == null)
{
Page.RegisterStartupScript("","<script> alert('データ抽出が失败しました。')</script>");
return;
}

DropDownList1.DataSource = ds.Tables[0];
DropDownList1.DataValueField = "Belong1Code";
DropDownList1.DataTextField = "Belong1Name";
DropDownList1.DataBind();

DropDownList1.Items.Insert(0,"ご选択ください");

string str_kk = "";
str_kk = ”你的数据库查询语句”
ds = dc.GetDataSet(str_kk);
DataGrid1.DataSource = ds.Tables[0];
DataGrid1.DataBind();
}
}
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式