Search

You searched for the word(s): userid:386622

Matching Posts

  • Re: Navigating within the module

    this works for me if I only care about the skin & container Dim strUrl As String = NavigateURL() & "?mid=" & ModuleId Dim strSkinSrc As String = PortalSettings.ActiveTab.SkinSrc.Replace(".ascx", "") Dim strContainerSrc As String = PortalSettings.ActiveTab.ContainerSrc.Replace(".ascx", "") Dim strForceSkin As String = "&SkinSrc=" + Server.UrlEncode(strSkinSrc) + _ "&ContainerSrc=" + Server.UrlEncode(strContainerSrc
    Posted to GotCommunityNet (Forum) by diveblue on 3/25/2005
  • Re: Multiple controls/pages in a single module

    I'm a bit new to DNN, but this works for me if I only care about the skin & container Dim strUrl As String = NavigateURL() & "?mid=" & ModuleId Dim strSkinSrc As String = PortalSettings.ActiveTab.SkinSrc.Replace(".ascx", "") Dim strContainerSrc As String = PortalSettings.ActiveTab.ContainerSrc.Replace(".ascx", "") Dim strForceSkin As String = "&SkinSrc=" + Server.UrlEncode(strSkinSrc) + _ "&ContainerSrc=" +
    Posted to DotNetNuke (Forum) by diveblue on 3/25/2005
  • Re: Navigation between Module Controls

    I'm experiencing the same thing.....has anyone done this successfully?
    Posted to GotCommunityNet (Forum) by diveblue on 3/24/2005
  • Re: DNN Only Works with localhost

    I'm having the same issue....does not appear that turning off friendly urls resolves the problem, nor does turning caching off.
    Posted to DotNetNuke (Forum) by diveblue on 1/21/2005
  • Implement IDisposable as a Best Practice?

    I am considering best practices for our first .NET project and would like to get some feedback from the experienced members. As one of these practices, it has been suggested that all classes we write implement the IDisposable interface, even if they do not use disposable resources. The rationale? If the implementation of a class changes in such a way that it does need to do some clean up, clients should already be calling the dispose method. Thoughts? Thanks, Dive
    Posted to Architecture (Forum) by diveblue on 2/20/2004
Page 1 of 1 (5 items)