Redirect from one view to another view in a module by passing the querystring
Last Post 01/06/2009 2:05 AM by Germaine. 3 Replies.
Author Messages
sherlock
Nuke Newbie
Nuke Newbie
Posts:9


--
12/26/2008 4:32 AM  

Hi,

I have used a multiview control in a module. There are many views used in the multiview control.
One view has a gridview which list some items and the items are displayed as a hyperlinkfield. When i click the link i should be redirected to the same module but with a querystring passed in it. how to do it?

Or is there any way to make use of it?

When i click the link the page should be directed to the same module with the query string value in it?

Please do help how to achieve it?

Thanks

Joseph Craig
DNN MVP
Posts:11667


--
12/26/2008 10:23 AM  
I'm not sure how to do it, but I'd recommend looking at Michael Washington's adefwebserver.com site. He has an article about navigation in modules, but it has been some time since I looked at it.

Joe Craig, Patapsco Research Group
Complete DNN Support
sherlock
Nuke Newbie
Nuke Newbie
Posts:9


--
12/29/2008 5:10 AM  
I have fixed the problem using the navigate url
Dim strLink as new StringBuilder
strLink.Append(NavigateURL(PortalSettings.ActiveTab.TabID))
strLink.Append("?ID=")

using this navigateurl it can be redirected to the same module with the querystring in it

Germaine
Nuke Ace
Nuke Ace
Posts:54


--
01/06/2009 2:05 AM  
Hi sherlock005,
I'm facing problem in navigating between modules too. So does it means that if I follow your code:
Dim strLink as new StringBuilder
strLink.Append(NavigateURL(PortalSettings.ActiveTab.TabID))
strLink.Append("?ID=")
The problem of navigating around the modules will be solved?

thanks!!!


---