Suppose i have event:
protected void dpMyNoteBook_PreRender(object sender, EventArgs e),
Inside this event i want to call another event name as :
protected void ibtnPinMarkedRemovePin_Click(object sender, System.Web.UI.ImageClickEventArgs e).
Is it possible to do this?
The easiest solution is to move the code that currently is in
ibtnPinMarkedRemovePin_Clickinto a helper method and call that fromdpMyNoteBook_PreRenderas well.