惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

大猫的无限游戏
大猫的无限游戏
N
News | PayPal Newsroom
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
P
Palo Alto Networks Blog
P
Privacy & Cybersecurity Law Blog
H
Hacker News: Front Page
Vercel News
Vercel News
阮一峰的网络日志
阮一峰的网络日志
博客园 - 叶小钗
IT之家
IT之家
B
Blog
Google DeepMind News
Google DeepMind News
U
Unit 42
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
Attack and Defense Labs
Attack and Defense Labs
美团技术团队
Y
Y Combinator Blog
爱范儿
爱范儿
L
Lohrmann on Cybersecurity
O
OpenAI News
酷 壳 – CoolShell
酷 壳 – CoolShell
W
WeLiveSecurity
Microsoft Azure Blog
Microsoft Azure Blog
H
Help Net Security
T
Threatpost
Application and Cybersecurity Blog
Application and Cybersecurity Blog
TaoSecurity Blog
TaoSecurity Blog
Simon Willison's Weblog
Simon Willison's Weblog
Security Archives - TechRepublic
Security Archives - TechRepublic
M
MIT News - Artificial intelligence
Last Week in AI
Last Week in AI
Apple Machine Learning Research
Apple Machine Learning Research
AWS News Blog
AWS News Blog
D
Darknet – Hacking Tools, Hacker News & Cyber Security
T
Tenable Blog
The GitHub Blog
The GitHub Blog
Google DeepMind News
Google DeepMind News
Help Net Security
Help Net Security
小众软件
小众软件
罗磊的独立博客
B
Blog RSS Feed
S
SegmentFault 最新的问题
L
LINUX DO - 热门话题
Scott Helme
Scott Helme
G
GRAHAM CLULEY
Martin Fowler
Martin Fowler
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
The Last Watchdog
The Last Watchdog
P
Proofpoint News Feed
Security Latest
Security Latest

博客园 - 逐风者

使用自定义控件的方式实现一个分页控件 在Oracle的函数中,返回表类型 在Word 中编辑文档的时候 有时鼠标点击无响应 无法在 COM+ 目录中安装和配置程序集 microsoft.sqlserver.notificationservices.dll 访问被拒绝:“Interop.Word” [转]oracle临时表相关知识 ASP.NET 未被授权访问所请求的资源。请考虑授予 ASP.NET 请求标识访问此资源的权限。 [转]SQL Server中获得EXEC后面的sql语句或者存储过程的返回值的方法 [转]asp.net中常用的一些小技巧 [转]Oracle中over函数的使用示例 使用OWC生成饼状图和柱状图 Testing SOAP Headers with a Simple Axis Handler 在GetVaryByCustomString方法中使用Session logmnr的简单使用。 Oracle DBA 试题及答案 编写高性能C#代码! dotNet错误集! Oracle错误集! [转]Oracle PL/SQL中如何使用%TYPE和%ROWTYPE
[转]关于模态窗口(showModalDialog)的专题讨论!
逐风者 · 2008-06-12 · via 博客园 - 逐风者

  1.模态窗口的打开  
  2.模态窗口的关闭  
  3.模态窗口的传递参数。  
  4.其他。。。。  
   
   
  1.window.showModalDialog("DialogPage.aspx","newwin","dialogHeight:   200px;   dialogWidth:   150px;   dialogTop:   458px;   dialogLeft:   166px;   edge:   Raised;   center:   Yes;   help:   Yes;   resizable:   Yes;   status:   Yes;");  
   
  2.window.close();  
   
  3.传值  
  ParentPage.aspx:  
  window.showModalDialog("DialogPage.aspx?para1=aaa&para2=bbb");  
   
  DialogPage.aspx:  
  string   str1=Request.QueryString["para1"].toString();  
  string   str2=Request.QueryString["para2"].toString();  
   
  返回值  
  DialogPage.aspx:  
  window.returnValue="aaa";  
   
  ParentPage.aspx:  
  var   str=window.showModalDialog("DialogPage.aspx");  
   
  4.  
  aspx页面在showmodeldialog情况下为什么一提交就重新打开一个页面?  
  showmodaldialog打开的页面中在<head></head>之间加入一行:<base   target="_self">

posted on 2008-06-12 16:47  逐风者  阅读(283)  评论()    收藏  举报