2

我想从我的 IIS 7 托管模块在 C# 中执行帧重定向。
当我调用时context.Response.Redirect(@"http://www.myRedirect.org");,会显示正确的页面,但地址也会显示在浏览器中。这正是我不想要的。
所以我想要类似的东西:

private void OnBeginRequest(object sender, EventArgs e)
{
    HttpApplication app = (HttpApplication)sender;
    HttpContext context = app.Context;

    // make a frame redirect if a specified page is called
    if (context.Request.ServerVariable["HTTP_REFERER"].Equals(@"http://www.myPage.org/1.html"))
    {
        // perform the frame redirect here, but how?
        // so something like
        context.Response.Redirect(@"http://www.myRedirect.org");
        // but as I said that doesn't redirect as I want it to be
    }
}

有什么想法吗?
编辑: 我尝试了这个例子,所以我有:

private void OnBeginRequest(object sender, EventArgs e)
{
    HttpApplication app = (HttpApplication)sender;
    HttpContext context = app.Context;

    // make a frame redirect if a specified page is called
    if (context.Request.ServerVariable["HTTP_REFERER"].Equals(@"http://www.myPage.org/1.html"))
    {
        // perform the frame redirect here, but how?
        context.Response.Write(@"<html>");
        context.Response.Write(@"<head>");
        context.Response.Write(@"</head>");
        context.Response.Write(@"<frameset rows=""100%,*"" framespacing=""0"" frameborder=""NO"" border=""0"">");
        context.Response.Write(@"<frame src=""http://www.myRedirect.org"" scrolling=""auto"">");
        context.Response.Write(@"</frameset>");
        context.Response.Write(@"<noframes>");
        context.Response.Write(@"<body>Some text...");
        context.Response.Write(@"</body>");
        context.Response.Write(@"</noframes>");
        context.Response.Write(@"</html>");
    }
}

但这也没有正确重定向。我的浏览器中仍然显示重定向地址。那么还有什么想法吗?

编辑:我显然犯了一个错误。上面的代码可以工作并且可以满足我的要求。它首先不起作用,因为我的重定向 url 做了一些意想不到的事情。

4

1 回答 1

1

要执行框架重定向,您需要发回包含带有单个框架的框架集的 HTML 代码,并将其源设置为http://www.myRedirect.org。就服务器和浏览器而言,没有发生重定向——它只是收到了一些 HTML 代码。

Response.Redirect如您所见,执行遗嘱会导致浏览器向新页面发出新的请求,在标题栏中向用户显示新地址。它通常用于当页面实际更改其地址时,但所有者仍然希望它也可以从原始 URL 访问。

编辑:HTML 框架重定向示例:http ://en.wikipedia.org/wiki/URL_redirection#Frame_redirects

于 2010-03-23T08:49:59.260 回答