how can i redirect in dotnetnuke 5.3 + to a particular page?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
DotNetNuke API is having helper methods for navigation. See
DotNetNuke.Common.Globals.NavigateURLmethod 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.