call button's click event explicitly
I wanted to call the click event of the button on the click of a checkbox -
for eg:-
i wanted to call the event below explicitly when a checkbox is checked
private void btnSave_Click(object sender, System.EventArgs e)
{
}
please suggest
|