我在商务舱中有这个代码.
internal ListItemCollection GetAllAgents() { DataTable table = dao.GetAllAgents(); ListItemCollection list = new ListItemCollection(); foreach (DataRow row in table.Rows) { list.Add(new ListItem(row["agent_name"].ToString(),row["id"].ToString())); } return list; }
我毫无问题地从桌子上取回了桌子.我看文本和值属性是否正确填充(1对于一些非常棒的文字?)并返回到演示文稿中我像这样绑定
Helper helper = new Helper(); ListItemCollection agentList = helper.GetAllAgents(); agentList.Insert(0,""); this.ddlAgent.DataSource = agentList; this.ddlAgent.DataBind();
当我得到所选的值
this.ddlAgent.SelectedValue
我希望看到代理ID,但我得到的是文本(代理名称),所以我尝试了这个
this.ddlAgent.SelectedItem.Value
但我得到了同样的结果.然后我看一下生成的html源代码,看起来像这样
<select name="ctl00$ContentPlaceHolder1$ddlAgent" onchange="javascript:setTimeout('__doPostBack(\'ctl00$ContentPlaceHolder1$ddlAgent\',\'\')',0)" id="ctl00_ContentPlaceHolder1_ddlAgent"> <option selected="selected" value=""></option> <option value="agent1_name">agent1_name</option> <option value="agent2_name">agent2_name</option>
所有代理商都在继续这种模式.我希望我只是做一些骨头的事情,你可以在解决我的问题时嗤之以鼻:)
多谢你们.
编辑:如果我这样做
ListItemCollection agentList = helper.GetAllAgents(); agentList.Insert(0,""); foreach (ListItem agent in agentList) { this.ddlAgent.Items.Add(agent); }
它工作正常.
解决方法
尝试做:
this.ddlAgent.DataTextField = "Text"; this.ddlAgent.DataValueField = "Value"; this.ddlAgent.DataSource = agentList; this.ddlAgent.DataBind();
也应该工作,它可能比没有理由循环列表更好.
更新发现另一种(更短)的方式:
this.ddlAgent.Items.AddRange(agentList.ToArray()); this.ddlAgent.DataBind();
通过使用Items.AddRange()而不是使用DataSource设置源,ASP能够确定它应该使用Text和Value属性.