I have a dynamic button btnQuestionNum and a integer i,
btnQuestionNum= new Button();
btnQuestionNum.Text = Convert.ToString(i + 1);
btnQuestionNum.ID = i.ToString();
btnQuestionNum.Click += new EventHandler(btnDynamic); placeholder.Controls.Add(btnQuestionNum);
I want to pass the value of i when button btnQuestionNum is clicked.
Loading
Santhosh Kumar JayaramanPosted Sep 10, 2013, 7:31 AM
So you can try something like this.
In Your btnDynamic event
{
HyperLink control=(HyperLink)sender;
int i=control.ID;
}