Response的一些用法

//打开新的窗体
Response.Redirect("WebMain.aspx");   
//出一个新窗体
Response.Write("")
//弹出一个只有确定按钮的提示框
Response.Write("");
//关闭窗体不提示信息
Response.Write("");
//关闭窗体提示一条信息
Response.Write("");
//关闭窗体提示两条信息
Response.Write("");

Trackback: http://tb.blog.csdn.net/TrackBack.aspx?PostId=257511
如何利用网 页弹 出各 形式的窗口,我想大家大多都是知道些的,但那 出式窗口是怎 搞出来的,我 今天就来学 一下:
   1. 启一个全屏窗口

;
www.webjx.com

   2. 启一个被 F11 化后的窗口

;
www.webjx.com

   3. 启一个 有收藏 接工具 的窗口


www.webjx.com

   4. 页对话


www.webjx.com



http://www.webjx.com

   showModalDialog() 或是 showModelessDialog() 用网 页对话 框,至于 showModalDialog() showModelessDialog() 的区 ,在于 showModalDialog() 的窗口( 称模式窗口),置在父窗口上,必 须关闭 才能 访问 父窗口 ( 尽量少用,以免招人反感 ) showModelessDialog() 称无模式窗口),打 后不必 关闭 也可 访问 父窗口打 的窗口。
dialogHeight: iHeight 对话 框窗口的高度。
dialogWidth: iWidth
对话 框窗口的 度。   
dialogLeft: iXPos
对话 框窗口相 于桌面左上角的 left 位置。
dialogTop: iYPos
对话 框窗口相 于桌面左上角的 top 位置。
center: {yes | no | 1 | 0 }
指定是否将 对话 框在桌面上居中,默 认值 “yes”
help: {yes | no | 1 | 0 }
指定 对话 框窗口中是否 示上下文敏感的帮助 图标 。默 认值 “yes”   
resizable: {yes | no | 1 | 0 }
指定是否 对话 框窗口大小可 。默 认值 “no”
status: {yes | no | 1 | 0 }
指定 对话 框窗口是否 示状 态栏 于非模式 对话 框窗口,默 认值 “yes” 于模式 对话 框窗口,默 认值 “no”
< asp : LinkButton ID="BackLbtn" PostBackUrl="javascript:history.back()" runat="server"> 戻る asp : LinkButton >
< asp : LinkButton ID="CloseLbtn" PostBackUrl="javascript:window.close()" runat="server"> 閉じる asp : LinkButton >
 

你可能感兴趣的:(Web技术)