LinkButton CommandName and CommandArgument

LinkButton CommandName and CommandArgument

问题

I'm having trouble understanding CommandName and CommandArgument associated with an ASP.NET LinkButton. I have read this article - http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.button.commandname.aspx and other questions on this site.

I guess my questions are - what exactly is a "Command"? Can a CommandName basically be any text? I see "Sort" and "Submit" as examples. And as for CommandArgument, this is just used to further specify the type of "Command". Correct? Thanks very much for your help.

 

回答

A Command can be anything you want it to be.

The basic idea is that if you say have a repeater, and in that repeater you have multiple options, you can give each option a different CommandName. The CommandArgument would then be based on the unique identifier of the line.

Then on the post-back you can check which CommandName was fired and based on that use the value in the CommandArgument

For Example, the mark-up could look something like...

<asp:Repeater runat="server" id="myRepeater">
  <ItemTemplate>
    <div>
      <asp:LinkButton runat="server" id="lnkEdit" CommandName="edit" 
        CommandArgument="<%#Container.DataItem.Id%>" Text="Edit" 
        OnClick="OnClickHandler" />
      <asp:LinkButton runat="server" id="lnkDelete" CommandName="delete" 
        CommandArgument="<%#Container.DataItem.Id%>" Text="Delete"
        OnClick="OnClickHandler" />
    </div>
  </ItemTemplate>
</asp:Repeater>

Then your post-pack handler could check to see which one was clicked...

Protected Sub OnClickHandler(ByVal sender As Object, ByVal e As EventArgs)
  Dim lnk as LinkButton = CType(sender,LinkButton)
  Select Case lnk.CommandName
    Case "edit"
      EditItem(lnk.CommandArgument)
    Case "delete"
      DeleteItem(lnk.CommandArgument)
  End Select
End Sub

 

 

回答2

CommandName can be any string yes. But beware! ASP.NET will treat certain strings in a special way. For example if you have a Button control in a GridView column with a CommandName of "delete" it will raise the OnDeleting event and the CommandArgument will have been set to the row index of the GridViewRow that the button is in. Otherwise as others have posted you can use the CommandName and CommandArgument however best suits your circumstances.

typically you will set the CommandArgument to be the row index of the control's parent container during binding, and the CommandName to be something meaningful to your application domain, such as "UpdateFoo." You then use this in the OnRowCommand event handler to determine which button has been clicked and therefore what business logic to execute.

 

https://www.cnblogs.com/streetpasser/archive/2013/04/09/3009432.html

 

作者:Chuck Lu    GitHub    
posted @   ChuckLu  阅读(72)  评论(0编辑  收藏  举报
编辑推荐:
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
· 没有源码,如何修改代码逻辑?
阅读排行:
· 全程不用写代码,我用AI程序员写了一个飞机大战
· DeepSeek 开源周回顾「GitHub 热点速览」
· MongoDB 8.0这个新功能碉堡了,比商业数据库还牛
· 记一次.NET内存居高不下排查解决与启示
· 白话解读 Dapr 1.15:你的「微服务管家」又秀新绝活了
历史上的今天:
2020-09-30 协变和逆变基础概念的误解
2020-09-30 Covariance and Contravariance in Generics
2020-09-30 Mutable fields should not be "public static"
2019-09-30 炉石传说 古墓惊魂 灾祸领主 英雄技能
2016-09-30 你必须知道的EF知识和经验
2016-09-30 XUnit的使用
2016-09-30 如何使用NUnit
点击右上角即可分享
微信分享提示