Products

Solutions

Resources

Partners

Community

Blog

About

QA

Ideas Test

New Community Website

Ordinarily, you'd be at the right spot, but we've recently launched a brand new community website... For the community, by the community.

Yay... Take Me to the Community!

Welcome to the DNN Community Forums, your preferred source of online community support for all things related to DNN.
In order to participate you must be a registered DNNizen

HomeHomeDevelopment and...Development and...Building ExtensionsBuilding ExtensionsModulesModulesRedirect_AfterLogout not updateable through code in DNN5? Redirect_AfterLogout not updateable through code in DNN5?
Previous
 
Next
New Post
4/21/2011 4:54 PM
 

Greetings.

I have a module that works fine under DNN 4.08.04.  On its settings page, it gives the user the ability to set the RedirectAfterLogout property that is under Admin-->UserAccounts-->UserSettings.  The setting is retrieved like this:

                if (UserController.GetUserSettings(PortalId).ContainsKey("Redirect_AfterLogout"))
                    value = UserController.GetUserSettings(PortalId)["Redirect_AfterLogout"].ToString();

This retrieves the correct tab id under DNN 4.08.04, but under DNN 5.05.00 it retrieves -1.

I found I could retrieve the correct tab id under DNN 5 by using the following code:
               
    ModuleInfo objModule = controller.GetModuleByDefinition(this.PortalId, "User Accounts");
                Hashtable htModuleSettings = controller.GetModuleSettings(objModule.ModuleID);
    if (htModuleSettings["Redirect_AfterLogout"] != null )
                      value = htModuleSettings["Redirect_AfterLogout"].ToString();
            

The following code is used to update the setting.  Again, it works in DNN4 but not in DNN5.

            ModuleInfo objModule = controller.GetModuleByDefinition(this.PortalId, "User Accounts");
            controller.UpdateModuleSetting(objModule.ModuleID,"Redirect_AfterLogout", ddlDNN_LOGOFF_TABID.SelectedValue.ToString());
            controller.UpdateModule(objModule);

Does anyone know what was changed between DNN4 and DNN5 that would explain this behavior?  And a way to restore the prior functioality?
 

 

 
New Post
4/21/2011 7:21 PM
 
DNN5 I believe now has a lot of these settings localized, so they are stored based on the Language as well as the PortalId

Chris Hammond
Former DNN Corp Employee, MVP, Core Team Member, Trustee
Christoc.com Software Solutions DotNetNuke Module Development, Upgrades and consulting.
dnnCHAT.com a chat room for DotNetNuke discussions
 
Previous
 
Next
HomeHomeDevelopment and...Development and...Building ExtensionsBuilding ExtensionsModulesModulesRedirect_AfterLogout not updateable through code in DNN5? Redirect_AfterLogout not updateable through code in DNN5?


These Forums are dedicated to discussion of DNN Platform and Evoq Solutions.

For the benefit of the community and to protect the integrity of the ecosystem, please observe the following posting guidelines:

  1. No Advertising. This includes promotion of commercial and non-commercial products or services which are not directly related to DNN.
  2. No vendor trolling / poaching. If someone posts about a vendor issue, allow the vendor or other customers to respond. Any post that looks like trolling / poaching will be removed.
  3. Discussion or promotion of DNN Platform product releases under a different brand name are strictly prohibited.
  4. No Flaming or Trolling.
  5. No Profanity, Racism, or Prejudice.
  6. Site Moderators have the final word on approving / removing a thread or post or comment.
  7. English language posting only, please.
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out