for eg:-
i wanted to call the event below explicitly when a checkbox is checked
private
{
}
please suggest
i wanted to call the event below explicitly when a checkbox is checked
private
{
}
please suggest
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
thulasi ramPosted Jan 6, 2011, 3:16 AM
protected void gvPersonalLoan_PageIndexChanging(object sender, GridViewPageEventArgs e)
{
gvPersonalLoan.PageIndex = e.NewPageIndex;
gvPersonalLoan.DataBind();
this.btnsearch1_Click1(sender, e);
}
protected void btnsearch1_Click1(object sender, EventArgs e)
{
lblDisplay.Text="ThulasiRam.S";
}
Moses SolimanPosted Jan 25, 2006, 2:31 AM
or map your check box checked event to use the same handler method of your button from visual studio property grid in events section.