GridView模板字段(如何处理DropDown列表选定项)

发布于 2024-12-02 15:24:54 字数 287 浏览 0 评论 0原文

我有带有 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

jJeQQOZ5 2024-12-09 15:24:54

您是否尝试过设置 DropDownList.Text 属性,该属性实际上设置了 DropDownList.SelectedValue 属性并导致相应的 ListItem 设置为选中状态。

Have you tried setting DropDownList.Text property which actually set the DropDownList.SelectedValue property and causes the corresponding ListItem to be set as selected.

他是夢罘是命 2024-12-09 15:24:54

您需要在后面的代码中处理 OnRowDataBound 事件,并按如下方式设置其中的值:

 If e.Row.RowType = DataControlRowType.DataRow Then

   Dim ddl as DropDownList =  CType(e.Controls.Find("id_of_the_drop_down"), DropDownList)  
   ddl.FindItemByValue("YourEmployeeOccupation").Selected=True
 End If

警告:我不是 VB 人员,所以我不能 100% 确定上面的语法,但这就是想法。

You need to handle the OnRowDataBound event in your code behind and set the value there as follows:

 If e.Row.RowType = DataControlRowType.DataRow Then

   Dim ddl as DropDownList =  CType(e.Controls.Find("id_of_the_drop_down"), DropDownList)  
   ddl.FindItemByValue("YourEmployeeOccupation").Selected=True
 End If

Warning: I'm not a VB guy, so I'm not 100% sure about my syntax above but that's the idea.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文