GridView模板字段(如何处理DropDown列表选定项)
我有带有 DropDownList 控件(职业)的员工注册页面。添加新员工时,我将 Occupatrion.SelectedValue 存储在数据库中。
我在 FindEmployee 页面上实现了 GridView,其中绑定了 Employee Table(数据库)表中的信息。
我正在 GridView 中使用模板字段并尝试检索职业的值。但它显示选定的值 i/o SelectedItem (是的,我知道为什么它显示值 i/o 项目)
我的问题是如何使用模板字段显示职业选择项目?
任何想法请
I have employee registeration page with DropDownList control (Occupation). I am storing Occupatrion.SelectedValue in the Database when new Employee is added.
I have GridView implemented on FindEmployee page where information from the Employee Table (Database) table is bound.
I am using Template field in the GridView and trying to retrieve value of Occupation. But it is showing selected value i/o SelectedItem (Yes i know why it is showing value i/o item)
My question here is how can i show Occupation select item using template field?
Any Idea please
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是否尝试过设置
DropDownList.Text
属性,该属性实际上设置了DropDownList.SelectedValue
属性并导致相应的ListItem
设置为选中状态。Have you tried setting
DropDownList.Text
property which actually set theDropDownList.SelectedValue
property and causes the correspondingListItem
to be set as selected.您需要在后面的代码中处理 OnRowDataBound 事件,并按如下方式设置其中的值:
警告:我不是 VB 人员,所以我不能 100% 确定上面的语法,但这就是想法。
You need to handle the OnRowDataBound event in your code behind and set the value there as follows:
Warning: I'm not a VB guy, so I'm not 100% sure about my syntax above but that's the idea.