asp.net Response.Redirect跳出框架与打开窗口方法

作者:袖梨 2022-06-25

asp教程.net Response.Redirect跳出框架与打开窗口方法

跳出框架大概会用到js top.location来实现。

Response.Write('');


Response.Redirect 方法是在服务器端进行转向,因此,除非使用 Response.Write("") 方法外,是不能在新窗口打开所指定的  URL 地址的。但是,如果仔细分析一下,如果设置 form 元素的 target 属性,还是有办法打开新窗口的

<%@ Page Language="C#" AutoEventWireup="true" %>

 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

http://www.w3.org/1999/xhtml">

   



   


如果需要设置弹出窗口的宽度和高度,可以修改为下面的方法:

<%@ Page Language="C#" AutoEventWireup="true" %>

 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

http://www.w3.org/1999/xhtml">

   



   


相关文章

精彩推荐