how can i redirect in dotnetnuke 5.3 + to a particular page?
If the included URL Rewriter doesn't do it for you, you can use Snapsis PageBlaster or the commercial iFinity Url Master Module (http://www.ifinity.com.au/Products/Url_Master_DNN_SEO_Urls). On a deeper level and if you are on IIS7, you can use the URL Rewrite function there.
Otherwise, you can try this:
- Go to the page you want to redirect, page functions, settings
- Find Advanced settings and then Other settings
- Click the radio button "URL (Link to an external resource)" and fill the Location field
Hi,
DotNetNuke API is having helper methods for navigation. See DotNetNuke.Common.Globals.NavigateURL
method overloads.
Depending on the various requirements, developers are using this method. for example, if you want to redirect to tab id 80 then you can simply write DotNetNuke.Common.Globals.NavigateURL(80) and it will redirect user to tab id 80
Please add more details about what you exactly want to implement so that I can point you towards some sample.
Hope this is helpful.