Hi all,
I recently upgraded to 4.5.1 from 4.4.1.
When I use my components in edit mode, everything redirects correctly.
Then if I switch to view mode, none of my components redirect.
I have checked my IIS log files and I am getting an error 404 (not found) on Container.css which it is expecting in "Projects/tabid/55/", I am right to assume this is what is causing the redirect issue?
This is my redirect code where I pass in the page I want to display:
Public Shared Sub DotNetNukeRedirect(ByVal strPage As String)Dim t As DotNetNuke.Entities.Tabs.TabInfoDim z As New TabControllerTrue)End SubAny help would be appreciated.
t = z.GetTabByName(strPage, 0)
HttpContext.Current.Response.Redirect(t.FullUrl,
Martyn