博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
UrlUtils.PopUpUrl
阅读量:5012 次
发布时间:2019-06-12

本文共 918 字,大约阅读时间需要 3 分钟。

DotNetNuke has a new ability to show PopUp's much more easily!  You can make entire modules work in a single popup or extend module functionality and usability.

There are  few different ways to show a PopUp window in DNN.  It really depends upon how you want to execute it.  Each 3 are very simple once you understand how to use the methods.

 

Server Redirect

 

string redirectUrl = UrlUtils.PopUpUrl(redirectUrl, this, PortalSettings, false, true);
Response.Redirect(redirectUrl);

 

 

Hyperlinks

 

HyperLink myLink = new HyperLink();
myLink.Text = "Click to make a PopUp";
myLink.NavigateUrl = "";
myLink.Attributes.Add("onclick","return" + UrlUtils.PopUpUrl(myLink.NavigateUrl, this, PortalSettings, true, false));

 

 

Action Controls

 

string redirectUrl = this.ModuleContext.NavigateUrl(tabId, controlKey, false, new string[] {});
Response.Redirect(redirectUrl);

转载于:https://www.cnblogs.com/perfectlife/archive/2013/01/20/2868914.html

你可能感兴趣的文章
c语言编写的生成泊松分布随机数
查看>>
Maven入门笔记
查看>>
iOS webView的常见属性和方法
查看>>
理解position:relative
查看>>
Codeforces Round #344 (Div. 2) Messager KMP的应用
查看>>
20145308刘昊阳 《Java程序设计》第4周学习总结
查看>>
js倒计时
查看>>
EasyUI datagrid 格式 二
查看>>
Android虹软人脸识别sdk使用工具类
查看>>
UI:基础
查看>>
浅谈 @RequestParam 和@PathVariable
查看>>
设计模式之---装饰器设计模式
查看>>
基于WordNet的英文同义词、近义词相似度评估及代码实现
查看>>
Equation漏洞混淆利用分析总结(上)
查看>>
shell学习1shell简介
查看>>
Qt 【无法打开 xxxx头文件】
查看>>
JAVA项目将 Oracle 转 MySQL 数据库转换(Hibernate 持久层)
查看>>
三层架构(我的理解及详细分析)
查看>>
Django模板语言相关内容
查看>>
前端开发工程师如何在2013年里提升自己【转】--2016已更新升级很多何去何从?...
查看>>