如何给datagrid中的下拉列表添加数据
web程序中,如何给datagrid中的dropdownlist绑定数据库的数据。希望给出思路和关键代码。谢谢!...
web程序中,如何给datagrid中的dropdownlist绑定数据库的数据。
希望给出思路和关键代码。
谢谢! 展开
希望给出思路和关键代码。
谢谢! 展开
1个回答
展开全部
先指定数据源,然后读取数据库表中的某一列,再绑定。给你个我最近写的参考一下。
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();
}
}
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();
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询