To navigate to another page from within one of your modules use the following code:
using DotNetNuke.Common;
using DotNetNuke.Services.Exceptions;
using DotNetNuke.Entities.Tabs;
protected void lbtnVictorianCross_Click(object sender, EventArgs e)
{
TabController tabController = new TabController();
TabInfo tabInfo = tabController.GetTabByName("Unparalleled Valour", PortalId);
Response.Redirect(Globals.NavigateURL(tabInfo.TabID));
}
Published by