asp.net下拉框从数据库中取值

根据表newstype表中的newstypeid在下拉框中显示newstypename... 根据表newstype表中的newstypeid在下拉框中显示newstypename 展开
 我来答
百度网友f7b369a
2009-04-01 · TA获得超过420个赞
知道小有建树答主
回答量:177
采纳率:0%
帮助的人:0
展开全部
首先,你要通过Session传过来的值判断newstypeid,然后你就填代码,代码如下:
protected void DropDownList1_content()
{
string querystr ="select newstypename from newstype where newstypeid='"+Session["id"]+"'";
SqlDataAdapter myda=new SqlDataAdapter(querystr,myconn);
DataSet myds=new DataSet();
myda.Fill(myds,"dm");
DropDownList1.DataSource=myds.Tables["dm"].DefaultView;
DropDownList1.DataValueField = myds.Tables["dm"].Columns[0].ColumnName;
DropDownList1.DataTextField = myds.Tables["dm"].Columns[0].ColumnName;
DropDownList1.DataBind();
}
代码完成以后,在设计视图中你把DropDownList1的autopostback属性设为true就可以了
ajax83316
2009-04-01 · TA获得超过466个赞
知道小有建树答主
回答量:485
采纳率:0%
帮助的人:300万
展开全部
全套代码?
简单给你写一下关键的吧,直接现在手打,大小写不一定对

首先假设有一个方法
privte dataset getdata()
{}
可以从你的数据库中读取newstype表

然后在 假设ddlist是你的dropdownlist控件
page_load()
{
this.ddlist.datascore=getdate()
this.ddlist.datatextfield="newstypeid";//绑定显示文字
this.ddlist.datavaluefield="id";//绑定值,如果有ID的话
ddllist.databind();
}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友76e521f
2009-04-02 · TA获得超过3304个赞
知道小有建树答主
回答量:262
采纳率:0%
帮助的人:121万
展开全部
拖一个ObjectDataSocus,邦定你查找newstype的方法,然后把你的下单菜单和这个ObjectDataSocus邦定,设置一下显示的值和选中值就OK了
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
lackyhuang
2009-04-01 · TA获得超过633个赞
知道小有建树答主
回答量:813
采纳率:0%
帮助的人:866万
展开全部
SqlConnection con= new SqlConnection("server=serverName;database=数据库;uid=sa;pwd=密码;");
con.Open();
DataTable dt = new DataTable();
string sql="select newstypename from newstype";
SqlDataAdapter da = new SqlDataAdapter(sql,con);
da.Fill(dt);
this.dropDownList.DataSource=dt;
this.dropDownList.DataTextField="newstypename";
this.dropDownList.DataBind();
con.Close();
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式