show/hide this revision's text 2 added 109 characters in body

Pass the info from your parent page to the controller.

<% RenderPartial("MyUserControl", new MyUserControlViewData()
{
    // pass parent page info here for user control to redirect to // such as
    Controller = "Home",
    Action = "Index"

   // or even better
   ParentPath = ((WebFormView)this.ViewContext.View).ViewPath
});

A better solution would be to pass in the controll / action of the parent page. Not sure where that is stored.

show/hide this revision's text 1

Pass the info from your parent page to the controller.

<% RenderPartial("MyUserControl", new MyUserControlViewData()
{
    // pass parent page info here for user control to redirect to
    // such as
    Controller = "Home",
    Action = "Index"
});

A better solution would be to pass in the controll / action of the parent page. Not sure where that is stored.