i don't know how to work with command argument in asp.net
- by Depozitul de Chestii
hey,
i'm tryng to pass a parameter with command argument with a link button but the result i get is always "".
this is in my aspx page:
<%
LinkButton1.CommandArgument = "abcdef";
%>
<asp:LinkButton ID="LinkButton1" runat="server" OnCommand= "LinkButton1_Click">
and in my aspx.cs i have:
protected void LinkButton1_Click(object sender,CommandEventArgs ee)
{
String id = ee.CommandName.ToString();
}
the id is always "" after i press the linkbutton.
would appreciate if someone could help me.
thanks