I have to call a button click event from another button click event .
but it is not firing
Please help.
protected void btnReview_Click(object sender, EventArgs e)
{
if (MandatoryValidation())
{
this.Button1.Click += new System.EventHandler(this.Button1_Click);
}
}
protected void Button1_Click(object sender, EventArgs e)
{
}

New Topic/Question
Reply




MultiQuote




|