Asp.Net LinkButton Onclick = method( container.dataitem ), need help with syntax - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T15:32:57Z http://stackoverflow.com/feeds/question/751577 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/751577/asp-net-linkbutton-onclick-method-container-dataitem-need-help-with-syntax 0 Asp.Net LinkButton Onclick = method( container.dataitem ), need help with syntax sweetcoder 2009-04-15T13:00:29Z 2009-04-15T15:47:27Z <p>I have a linkbutton that I want to call a method in the code behind. The method takes a parameter of which I need to stick in a container.dataitem. I know the container.dataitem syntax is correct because I use it in other controls. What I don't know is how to user it a parameter for a method. Upon clicking on the button, the method should be called with the container.dataitem. The method is called 'AddFriend(string username)' Below is code. Thank you!</p> <pre><code>&lt;asp:LinkButton ID="lbAddFriend" runat="server" OnClick='&lt;%# "AddFriend(" +((System.Data.DataRowView)Container.DataItem)["UserName"]+ ")" %&gt;' Text="AddFriend"&gt;&lt;/asp:LinkButton&gt;&lt;/td&gt; </code></pre> http://stackoverflow.com/questions/751577/asp-net-linkbutton-onclick-method-container-dataitem-need-help-with-syntax/751602#751602 0 Answer by scottschulthess for Asp.Net LinkButton Onclick = method( container.dataitem ), need help with syntax scottschulthess 2009-04-15T13:06:03Z 2009-04-15T13:11:18Z <p>You need to use a ButtonField and handle the click in RowCommand. Check the <a href="http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.gridview.rowcommand.aspx" rel="nofollow">MSDN docs</a></p> <pre><code> &lt;asp:buttonfield buttontype="Link" commandname="Add" text="Add"/&gt; </code></pre> <p>And in the code behind...</p> <pre><code> void ContactsGridView_RowCommand(Object sender, GridViewCommandEventArgs e) { if(e.CommandName=="Add") { AddFriend(DataBinder.Eval(Container.DataItem, "Price""UserName")); } } </code></pre> http://stackoverflow.com/questions/751577/asp-net-linkbutton-onclick-method-container-dataitem-need-help-with-syntax/751735#751735 0 Answer by Tim Meers for Asp.Net LinkButton Onclick = method( container.dataitem ), need help with syntax Tim Meers 2009-04-15T13:38:56Z 2009-04-15T13:38:56Z <p>I think the same thing applies to a data list, but I've been using this for a repeater in my code behind. Mayby use DataListItemEventArgs and DataListCommandEventArgs in place of the Repeater.</p> <pre><code>protected void rptUserInfo_Data(object sender, RepeaterItemEventArgs e) { if (e.Item.ItemType == ListItemType.Item || e.Item.ItemType == ListItemType.AlternatingItem) { UserInfo oUserInfo = e.Item.DataItem as UserInfo; LinkButton hlUser = e.Item.FindControl("hlUser") as LinkButton; hlUser.Text = oUserInfo.Name; hlUser.CommandArgument = oUserInfo.UserID + ";" + oUserInfo.uName; hlUser.CommandName = "User"; } } public void UserArtItem_Command(Object sende, RepeaterCommandEventArgs e) { if (e.CommandName == "User") { string command = e.CommandArgument.ToString(); string[] split = command.Split(new Char[] { ';' }); Session["ArtUserId"] = split[0]; Session["ArtUserName"] = split[1]; Response.Redirect("~/Author/" + split[1]); } } </code></pre> http://stackoverflow.com/questions/751577/asp-net-linkbutton-onclick-method-container-dataitem-need-help-with-syntax/752315#752315 0 Answer by rvarcher for Asp.Net LinkButton Onclick = method( container.dataitem ), need help with syntax rvarcher 2009-04-15T15:47:27Z 2009-04-15T15:47:27Z <p>Maybe this?</p> <pre><code>&lt;asp:LinkButton ID="lbAddFriend" runat="server" Text="Add Friend" OnCommand="AddFriend" CommandArgument='&lt;%# Eval("UserName").ToString() %&gt;' /&gt; </code></pre> <p>Then in the code:</p> <pre><code>Protected Sub AddFriend(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.CommandEventArgs) Dim UserName As String = e.CommandArgument 'Rest of code End Sub </code></pre>