• DNN常用的几种页面跳转(EditUrl和Globals.NavigateURL)


    看过我的视频教程或下载过Blog项目源码的用户都应该知道,我在演示中的页面跳转是在HTML页完成的.那么如果我们添加了一个自己的Button,要通过代码来完成页面的跳转,我们要怎么写跳转的代码呢?
    下面我就把常用的几种页面间的跳转列出来,大家可以参考一下.
    一、相同模块间
    1)跳转到ascx页面,不带参数
        Response.Redirect(EditUrl("","","ascx页面Key值"));
    2)跳转到ascx页面,带参数
        Response.Redirect(EditUrl("","","ascx页面Key值","BlogID1=Blog参数1","BlogID2=Blog参数2"));
    3)任意ascx页面到模块首页,不带参数
        Response.Redirect(Globals.NavigateURL(), true);
    4)任意ascx页面到模块首页,带参数
        int intTabID=this.TabId;
        Response.Redirect(Globals.NavigateURL(intTabID,"","op=Back"));

    二、不同模块间跳转
        DotNetNuke.Entities.Modules.ModuleController objModules=new    DotNetNuke.Entities.Modules.ModuleController();
        int intTabID=objModules.GetModuleByDefinition(PortalSettings.PortalId,"DM Blog").TabID;

    1)模块间跳转,不带参数
        Response.Redirect(Globals.NavigateURL(intTabID));
    2)模块间跳转,带参数
        Response.Redirect(Globals.NavigateURL(intTabID,"","BlogID1=Blog参数1","BlogID2=Blog参数2"));
    3)模块间跳转到另一模块的某个ascx页面,不带参数
        Response.Redirect(Globals.NavigateURL(intTabID,"ascx页面Key值"));
    4)模块间跳转到另一模块的某个ascx页面,不带参数
        Response.Redirect(Globals.NavigateURL(intTabID,"ascx页面Key值","BlogID1=Blog参数1","BlogID2=Blog参数2"));

    专注iOS、Android、Java、Golang开发等涉及开发管理相关。 技术博客:http://xiaopin.cnblogs.com
  • 相关阅读:
    click event not triggered on bootstrap modal
    how to use datatables editor
    how to create modals with Bootstrap
    WebSite
    Spring Security OAuth 2开发者指南译
    security和oauth2.0的整合
    Spring Boot遇到的某些问题
    linux主机名莫名其妙变成了bogon,并解决修改为localhost
    Getway网关管理ZUUL
    feign中的hytrix和turbin配置
  • 原文地址:https://www.cnblogs.com/xiaopin/p/2234844.html
Copyright © 2020-2023  润新知