在 rowediting 事件中设置 gridview 中的下拉列表

发布于 2024-09-17 20:52:52 字数 271 浏览 3 评论 0原文

尝试让 findcontrol 工作,以便我可以设置模板字段中下拉列表的默认值,但我没有运气。我做错了什么吗?

Dim drdList As DropDownList
    For Each row As GridViewRow In gridviewComputer.Rows

        drdList = gridviewComputer.Rows(e.NewEditIndex).FindControl("statusDropDown")


    Next

Trying to get the findcontrol to work so I can set the default value of the dropdownlist I have in a template field, but I'm having no luck. Am I doing something wrong?

Dim drdList As DropDownList
    For Each row As GridViewRow In gridviewComputer.Rows

        drdList = gridviewComputer.Rows(e.NewEditIndex).FindControl("statusDropDown")


    Next

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

愁以何悠 2024-09-24 20:52:52

找到了更简单的方法。

进入 gridview 模板编辑,然后在 EditItemTemplate 下声明下拉列表,我选择了“编辑数据绑定”。刷新架构,然后我可以将 SelectedValue 属性设置为 gridviews 数据源的相应字段。 (实际上只是在代码表达式中填写“Bind("columnName")”。)问题解决了!

Found an easier way.

Go into the gridview template editing, then under the EditItemTemplate, where I had the dropdownlist declared I selected Edit DataBindings. Refresh the Schema, then I was able to set the SelectedValue property to the corresponding field of my gridviews datasource. (Which really just fills in "Bind("columnName")" in the Code expression.) Problem solved!

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