hi,
i want to fetch the text value of selected hyperlink control from repeater control. please help me with it.
You need to write the code this way
protected void LinkButton1_Command(object sender, EventArgs e) { LinkButton lnk = sender as LinkButton; string menu = lnk.CommandArgument.ToString(); }
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.