首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

请问个有关问题,怎么设置某些网页只能在iframe中调用,而不能直接访问

2012-06-25 
请教个问题,如何设置某些网页只能在iframe中调用,而不能直接访问?RT如QQ邮箱左边的菜单,当在浏览器中拖动

请教个问题,如何设置某些网页只能在iframe中调用,而不能直接访问?
RT
如QQ邮箱左边的菜单,当在浏览器中拖动菜单时,拖出来的新页面还是原有页面,他阻止浏览器单独访问iframe中的内容页,请各位朋友帮忙,谢谢了

[解决办法]
判断window.parent

[解决办法]

JScript code
<script language="javascript" type="text/javascript">    if (window.self != window.top) {        window.top.location = window.location;    }</script>
[解决办法]
有a.aspx页面,<iframe>中是b.aspx页面,
则在b.aspx页面的Page_Load中:
C# code
        if (Request.ServerVariables["HTTP_REFERER"] == null)        {            Response.Redirect("a.aspx");        }        else        {            string urlPre1 = "http://" + Request.ServerVariables["HTTP_HOST"].ToString();            string urlPre2= Request.ServerVariables["SCRIPT_NAME"].ToString();            urlPre2 = urlPre2.Substring(0, urlPre2.Length - 6)+"a.aspx";//注意-6是b.aspx的长度            if (urlPre1 + urlPre2 != Request.ServerVariables["HTTP_REFERER"].ToString())                Page.ClientScript.RegisterStartupScript(Page.GetType(), "", "window.open('a.aspx')", true);        } 

热点排行