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.
