Sign in | Join
Last post 11-16-2005 9:35 AM by exptrade2000. 7 replies.
Sort Posts: Oldest to newest Newest to oldest
I want to navigate from one view control to another and I use NavigateUrl for it but it does not work. I issue command Response.Redirect(NavigateUrl(ControlKey.ViewReport)), but I just get a blank page. I added a control to module definition with a key "ViewReport" and set it up as View type control. What else I need to do to make this happen. What is 'View Order' used for?
I know about EditUrl but I do not want to set any edit right on this page. This is a purely navigation. I need to know how to do this as I will have to have multiple default views based on module settings, so I need to know how to redirect.
I think you need the moduleId as a paramater as well (if the control is part of the same module definition)
Try using NavigateUrl(Me.TabId, ControlKey.ViewReport, "Mid=" & moduleId)