Asp.Net LinkButton Onclick = method( container.dataitem ), need help with syntax - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T15:32:57Zhttp://stackoverflow.com/feeds/question/751577http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/751577/asp-net-linkbutton-onclick-method-container-dataitem-need-help-with-syntax0Asp.Net LinkButton Onclick = method( container.dataitem ), need help with syntaxsweetcoder2009-04-15T13:00:29Z2009-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><asp:LinkButton ID="lbAddFriend" runat="server" OnClick='<%# "AddFriend(" +((System.Data.DataRowView)Container.DataItem)["UserName"]+ ")" %>' Text="AddFriend"></asp:LinkButton></td>
</code></pre>
http://stackoverflow.com/questions/751577/asp-net-linkbutton-onclick-method-container-dataitem-need-help-with-syntax/751602#7516020Answer by scottschulthess for Asp.Net LinkButton Onclick = method( container.dataitem ), need help with syntaxscottschulthess2009-04-15T13:06:03Z2009-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> <asp:buttonfield buttontype="Link"
commandname="Add"
text="Add"/>
</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#7517350Answer by Tim Meers for Asp.Net LinkButton Onclick = method( container.dataitem ), need help with syntaxTim Meers2009-04-15T13:38:56Z2009-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#7523150Answer by rvarcher for Asp.Net LinkButton Onclick = method( container.dataitem ), need help with syntaxrvarcher2009-04-15T15:47:27Z2009-04-15T15:47:27Z<p>Maybe this?</p>
<pre><code><asp:LinkButton ID="lbAddFriend" runat="server"
Text="Add Friend" OnCommand="AddFriend"
CommandArgument='<%# Eval("UserName").ToString() %>' />
</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>