gpt4 book ai didi

c# - 在更新时从 GridView 中的下拉列表中获取选定的值

转载 作者:行者123 更新时间:2023-11-30 22:28:08 25 4
gpt4 key购买 nike

所以我有一些 GridView。当您编辑一行时,特定列会从标签更改为 DropDownList。此下拉列表的内容是通过某些 SQL 数据源填充的。用户可以做出选择并点击“更新”。

我怎样才能真正获得下拉列表的 SelectedValue 属性?

我认为这会起作用:

    <asp:GridView ... >
<Columns>
...
<EditItemTemplate>
<asp:DropDownList ID="ServiceCategoriesGvDropDown" AutoPostBack="True" .../>
</EditItemTemplate>
<ItemTemplate>
<asp:Label ... />
</ItemTemplate>
</asp:TemplateField>
...
</Columns>
</asp:GridView>

然后将它与我的 SqlDataSource 中的 ControlParameter 连接起来:

    <UpdateParameters>
...
<asp:ControlParameter ControlID="ServiceCategoriesGvDropDown" PropertyName="SelectedValue" ... />
</UpdateParameters>

但是,我得到以下异常:

System.InvalidOperationException:在 ControlParameter“ServiceCategoriesID”中找不到控件“ServiceCategoriesGvDropDown”。

很明显我的下拉列表没有被发现。也许它已经被摧毁了?

最佳答案

在网格的更新事件中试试这个。

 protected void YourGrid_RowUpdating(object sender, GridViewUpdateEventArgs e)
{
DropDownList ddl= (DropDownList )YourGrid.Rows[e.RowIndex].FindControl("ddlId");
string selectedvalue=ddl.selectedvalue;
//Your update code goes here
}

关于c# - 在更新时从 GridView 中的下拉列表中获取选定的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10935114/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com