gpt4 book ai didi

c# - 带有 DropDownList 的 Gridview RowCommand 事件不起作用

转载 作者:太空狗 更新时间:2023-10-29 19:40:29 27 4
gpt4 key购买 nike

我已经创建了一些 DropDownLists,它们填充了来自数据库的数据。下拉列表的前ListItem:

<asp:DropDownList ID="ddlChange_Requestor" runat="server" AppendDataBoundItems="True"  CssClass="ddlChange_Requestor">
<asp:ListItem>Change Requestor</asp:ListItem>

enter image description here

我还有一个 GridView,它在 Select 按钮上有一个 RowCommand 事件。

enter image description here

当我按下 Select 时,DropDownLists 将取回相关列/行具有的任何值:

protected void gwActivity_RowCommand(object sender, GridViewCommandEventArgs e)
{
{
GridViewRow row = ((e.CommandSource as Control).NamingContainer as GridViewRow);
txtActivity.Text = row.Cells[2].Text;
ddlChange_Requestor.SelectedValue = row.Cells[10].Text;
}
}

当 GridView 中的 Change Request 列/行具有值时,这会起作用,但当它是“white-space”/“Empty”/“Null”时则不起作用。我真的不知道如何解决它?

我希望能够做这样的事情:

ddlChange_Requestor.SelectedValue = isnullOrwhitespace(row.Cells[10].Text , "Change Requestor");

但是我只想在后台使用它,因为我想在 GridView 中有空行,但是在 RowCommand Select 上应该理解空意味着 ListItem 值。

这可能吗?

最佳答案

它不会简单地检查单元格 10 中的值是否为空吗?

if (!string.IsNullOrEmpty(row.Cells[10].Text) && row.Cells[10].Text != "&nbsp;")
{
ddlChange_Requestor.SelectedValue = row.Cells[10].Text;
}
else
{
ddlChange_Requestor.SelectedIndex = 0;
}

假设 ddlChange_Requestor 是 GridView 之外的 DropDown。

如果您不确定单元格值是否存在于 DLL 中,您可以先进行检查。

if (!string.IsNullOrEmpty(row.Cells[10].Text))
{
string value = row.Cells[10].Text;

if (ddlChange_Requestor.Items.Cast<ListItem>().Any(x => x.Value == value))
{
ddlChange_Requestor.SelectedValue = value;
}
else
{
ddlChange_Requestor.SelectedIndex = 0;
}
}

关于c# - 带有 DropDownList 的 Gridview RowCommand 事件不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49554146/

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