首页 | 联系我们 | 叶凡网络官方QQ群:323842844
游客,欢迎您! 请登录 免费注册 忘记密码
您所在的位置:首页 > 开发语言 > ASP开发 > 正文

ASP判断打开是哪个网址,调用哪个页面

作者:cocomyyz 来源: 日期:2013-06-19 19:49:23 人气:20 加入收藏 评论:1 标签:ASP HTML


<%

httpHost = Request.ServerVariables("HTTP_HOST")


indexNo = InStr(httpHost,"domain")

If indexNo <> 0 Then

resultUrl = "www.hfyefan.com"

End If


indexNo = InStr(httpHost,"domain1")

If indexNo <> 0 Then

resultUrl = "www.mingyangnet.com"

End If


indexNo = InStr(httpHost,"domain2")

If indexNo <> 0 Then

resultUrl = "www.mingyangidc.com"

End If




%>



<html>


<head>


<title></title>


<meta http-equiv="Content-Type" content="text/html; charset=gb2312">




<style type="text/css">


<!--


body {


margin-left: 0px;


margin-top: 0px;


margin-right: 0px;


margin-bottom: 0px;


}


-->


</style>




</head>


<body scroll="no">




<script>  




var FFextraHeight = 0;


if(window.navigator.userAgent.indexOf("Firefox")>=1)


{


FFextraHeight = 16;


}


function ReSizeiFrame(iframe)


{


 if(iframe && !window.opera)


 {


   iframe.style.display = "block";


    if(iframe.contentDocument && iframe.contentDocument.body.offsetHeight)


    {


      iframe.height = iframe.contentDocument.body.offsetHeight + FFextraHeight;


    }


    else if (iframe.Document && iframe.Document.body.scrollHeight)


    {


      iframe.height = iframe.Document.body.scrollHeight;


      alert(iframe.Document.body.scrollHeight);


    }


 }


}




</script>




<iframe name="mainframe" id="mainframe"src="http://<%=resultUrl%>/" border="0" marginheight="0" marginwidth="0" frameborder="0" scrolling="auto" height="100%" width="100%"></iframe>




</body>


</html>


本文网址:http://www.mingyangnet.com/html/asp/52.html
读完这篇文章后,您心情如何?
  • 0
  • 0
  • 0
  • 0
  • 0
  • 0
  • 0
  • 0
更多>>网友评论
发表评论
编辑推荐
  • 没有资料