I am dynamically loading a UserControl into a view that is in a MultiView control. Although UserControl adds an event handler, the event never fires.
What am I missing here? Thanks!
Contains an aspx page:
protected override void OnPreRender(EventArgs e) { if (MultiView1.ActiveViewIndex == 2)
Presenter.ascx.cs
override protected void OnInit(EventArgs e) { Retry.Click += this.Retry_Click;
c # events user-controls
Mark maslar
source share