hume.tony
02-27-2009, 11:02 AM
I am trying to figure out how to dynamically activate a button in the code behind. For example, when LinkButton4 is clicked it activates LinkButton4_Click but when I try to call LinkButton4_Click(); it doesn't work.
protected void LinkButton4_Click(object sender, EventArgs e)
{
}
I figure I need to give it the (object sender, EventArgs e) parameters it's looking for I just don't know what they are.
protected void LinkButton4_Click(object sender, EventArgs e)
{
}
I figure I need to give it the (object sender, EventArgs e) parameters it's looking for I just don't know what they are.