如何Response.Redirect新的页面到指定的框架中?
如何Response.Redirect新的页面到指定的框架中?谢谢! --------------------编程问答-------------------- url传参 判断参数 再将ifram 的src赋值 --------------------编程问答-------------------- 用Response.Redirect是转不到指定框架的,要用Javascript --------------------编程问答-------------------- 用Response.Redirect是转不到指定框架的,用a标签可以 --------------------编程问答--------------------
具体怎么写? --------------------编程问答-------------------- Response.Redirect布恩那个指定框架,
除了用a标签,如果在后台的话,可以用个linkbutton
linkbutton1.Attribute.Add("href","xxxx.aspx");//所要链接的目标页
lnk.linkbutton1.Add("target","框架名"); --------------------编程问答-------------------- linkbutton1.Attribute.Add("href","xxxx.aspx");//所要链接的目标页
linkbutton1.Attribute.Add("target","框架名"); --------------------编程问答-------------------- 搞定了,按照以下写代码
Response.Write("<script language=javascript>")
Response.Write("window.parent.winfoot.location='bottom.aspx';")
Response.Write("</script>")
补充:.NET技术 , ASP.NET