gpt4 book ai didi

c# - 带有两个asp :Command columns using the same command的GridView控件

转载 作者:行者123 更新时间:2023-11-30 15:50:08 24 4
gpt4 key购买 nike

我有一个 ASP.NET GridView 控件,它有两个 asp:CommandField 列,它们都使用 Select 命令执行不同的任务。当我检查 GridViewCommandEventArgs 对象的 CommandName 属性时,如果两者都返回“Select”,我如何区分在 OnRowCommand 事件中选择了哪一列?

这是我的源代码:

ASPX 页面:

<asp:GridView ID="MyGridView" runat="server" AutoGenerateColumns="false" OnRowCommand="MyGridView_OnRowCommand">
<Columns>
<asp:CommandField ButtonType="Link" ShowSelectButton="true" SelectText="Click Me!" />
<asp:CommandField ButtonType="Link" ShowSelectButton="true" SelectText="No Click Me!" />
</Columns>
</asp:GridView>

代码隐藏:

protected void MyGridView_OnRowCommand(object sender, GridViewCommandEventArgs e)
{
string x = e.CommandName //returns "Select" for both asp:CommandField columns
}

最佳答案

改用按钮列,这样您就可以指定特定的命令名称并从那里使用它

<asp:ButtonField ButtonType="Link" Text="Click Me" CommandName="MyCommand1" />
<asp:ButtonField ButtonType="Link" Text="No Click Me" CommandName="MyCommand2" />

然后你可以根据e.CommandName采取行动

关于c# - 带有两个asp :Command columns using the same command的GridView控件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/946074/

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