Hi All,
I've created some code that will dynamically generate a bunch of different LinkButtons. I've got each link button's onClick even pointing to:
void LinkButton_Click(object sender, EventArgs e)
{
Response.Write("You clicked the link button");
}
This runs fine, but now I when one of the LinkButtons is click I want to get its ID and send that to another function.
Any help would be greatly appreciated.
Matt