DotNetNuke中怎样从本模块转向到另一个模块的页面,并传递参数一些参数
我用Response.Redirect(Globals.NavigateURL("friendlyName",paramer);调用,但没有成功
请高手指点

解决方案 »

  1.   


    ModuleController objModules = new ModuleController();
    //Payment:模块名
    int intTabID = objModules.GetModuleByDefinition(this.PortalId, "Payment").TabID;
    string[] param = new string[2];
    param[0] = "fId=0"; //参数根据需要来定                 
    param[1] = "UserId=1" ;  
    //Paymode:调用模块中的ControlKey
    Response.Redirect(Globals.NavigateURL( intTabID, "Paymode", param));