问题描述
各位专家好,我的网址是index.asp,如何让他在打开这个网址时自动跳转到另一个地址index.asp?action=framon,谢谢
解决方案
解决方案二:
window.onload=functionWindowOnLoad(){window.location="ms-siteactionsmenuhover";}
解决方案三:
window.onload=functionWindowOnLoad(){window.location="index.asp?action=framon";}
解决方案四:
BODY里面onload=="location='index.asp?action=framon';"
解决方案五:
不好意思,我不懂JScriptcode我是想把论坛地址修改,请问这个代码是放到哪个文件里,能说的明白点吗?
解决方案六:
写在index.asp里面
解决方案七:
pageload里面Server.Transfer("index.asp?action=framon");
解决方案八:
在index.asp页面的最前面加<ahref="index.asp?action=framon"></a>
解决方案九:
注意加判断否则死循环
解决方案十:
真笨,还没做出来,好像做了是会死循环,老刷新
解决方案十一:
if(Request.QueryString["action"]==null||(Request.QueryString["action"]!=null&&!"framon".Equals(Request.QueryString["action"].ToString())))Response.Redirect("index.asp?action=framon");
解决方案十二:
301redirector302redirect?301永久转移搜索引擎支持302临时转移搜索引擎不支持以301为例ASPRedirect<%@Language=VBScript%><%Response.Status="301MovedPermanently"Response.AddHeader"Location","http://www.new-url.com/"%>ASP.NETRedirect<scriptrunat="server">privatevoidPage_Load(objectsender,System.EventArgse){Response.Status="301MovedPermanently";Response.AddHeader("Location","http://www.new-url.com");}</script>