c# - How to get Repeater Item data object on ItemCommand event -


i have repeater of linkbuttons , on itemcommand event. need data object created link button.

my datasource list on itemcommand need myobject object = ???

are looking this? send id code behind using commandargument can processed.

<asp:linkbutton id="linkbutton1" commandargument='<%# eval("id") %>' runat="server" commandname="mycommand">linkbutton</asp:linkbutton> 

and in code behind:

protected void repeater1_itemcommand(object source, repeatercommandeventargs e) {     if (e.commandname == "mycommand")     {         string myid = e.commandargument.tostring();     } } 

or can use commandargument='<%# container.itemindex %>'. know row number , can access corresponding index in source.


Comments

Popular posts from this blog

css - SVG using textPath a symbol not rendering in Firefox -

Java 8 + Maven Javadoc plugin: Error fetching URL -

node.js - How to abort query on demand using Neo4j drivers -