I have created two link buttons dynamically:
for (int i = 0; i < 2; i++) {
LinkButton lb = new LinkButton();
lb.ID = "lnk" + FileName;
lb.Text = FileName;
Session["file"] = FileName;
lb.CommandArgument = FileName;
lb.Click += new EventHandler(Lb_Click);
Panel1.Controls.Add(lb);
Panel1.Controls.Add(new LiteralControl("<br />"));
}
I have got two links, namely:
And I need to determine which one was clicked:
void Lb_Click(object sender, EventArgs e) {
string id=lb.ID;
//Here - how to get link button id which is clicked (either File11 id or File22 id)?
}
In your event handler:
LinkButton clickedButton = (LinkButton)sender;
You could then access the ID using clickedButton.ID
Here's an MSDN walkthrough: http://msdn.microsoft.com/en-us/library/aa457091.aspx for determining senders of events.