如何Response.Redirect新的页面到指定的框架中(转)

如何Response.Redirect新的页面到指定的框架中
2000年10月31日
In the file that you wish to show up in the frame, add this line after the <BODY> tag:
<BASE TARGET="framename">
Then when you Response.Redirect to this ASP file, its contents will appear in the frame named "framename".

时间: 2024-09-20 01:11:06

如何Response.Redirect新的页面到指定的框架中(转)的相关文章

如何Response.Redirect新的页面到指定的框架中

redirect|response|页面 In the file that you wish to show up in the frame, add this line after the <BODY> tag: <BASE TARGET="framename"> Then when you Response.Redirect to this ASP file, its contents will appear in the frame named "

Response.Redirect的定向页面问题

问题描述 try{intresult=Login(this.txtUserID.Text.Trim(),this.txtPassWord.Text.Trim());if(result==1){stringstrURL="Admin/admin.aspx";Session["UserID"]=this.txtUserID.Text.Trim();Response.Redirect(strURL);//运行到这步出错}elseif(result==2){stringst

asp.net在使用Response.Redirect try{}catch{}块失效

try { - Response.Redirect("/mymaimai.aspx"); - } catch (Exception e) { // 异常处理 } 使用以上语句,不管是否有异常,都会执行catch中的,一直显示""失败"",都会抛出 System.Threading.ThreadAbortException,原因如下: Response.End 方法停止页的执行,并将该执行变换到应用程序的事件管线中的 Application_End

Response.Redirect用法详解

    The Redirect method causes the browser to redirect the client to adifferent URL. EG:    string CurrentTime = DateTime.Now.ToShortDateString().ToString();    //其中UserId是从函数外传递进去的参数,注意超链接需要添加引号,引号内的东西原样输出    string MyUrl = "http://www.microsoft.com

JSP页面无法在指定的子框架中显示,哪里出错了

问题描述 这是left.jsp,其中点击客户管理,希望lookClient.jsp页面在main子框架中显示,以下是left.jsp代码:<%@pagelanguage="java"contentType="text/html;charset=UTF-8"pageEncoding="UTF-8"%><!DOCTYPEhtmlPUBLIC"-//W3C//DTDHTML4.01Transitional//EN"

Springnvc框架中的拦截器如何配置可以拦截html页面的请求?

问题描述 Springnvc框架中的拦截器如何配置可以拦截html页面的请求? Springnvc框架中的拦截器如何配置可以拦截html页面的请求? 解决方案 SpringMVC及拦截器基本配置:http://se7en8974.iteye.com/blog/826670 springMVC 拦截器简单配置:http://blog.csdn.net/lqx1988221/article/details/36420887

jQuery判断页面是否被iframe框架调用打开

之前有一个URL是页面打开,后来改成窗口了.于是乎我百度搜索了: <script>       function fun1(){       if( window.top == window.self ){              alert('页面不是在框架中打开的');        }else{             alert('页面是在框架中打开的');        }   }   </script>   <input type="button&qu

Response.Redirect打开新页面后js,ligerui全部失效

问题描述 Response.Redirect("../store_manage/maintain_alter.aspx/?cid="+cid+"");使用Response.Redirect传值打开新页面发现里面的javascript方法全部无效,比如我使用了ligerui控件方法$(function(){$("#produceDate").ligerDateEditor();})就找不到对象有大神请教下么

asp.net 页面转向 Response.Redirect, Server.Transfer, Server.Execute的区别_实用技巧

Response.Redirect 简单地发送一条消息到浏览器,告诉浏览器定位到另一个页面.你可以使用下面的代码将用户引导到另一个页面: Response.Redirect("WebForm2.aspx") 或者 Response.Redirect("http://www.cnnas.com/") Server.Transfer 也是通过一条语句将用户引导到另一页面,比如:Server.Transfer("WebForm2.aspx").不过,这