0

我有一个类似 grap 元标记的页面。

<!DOCTYPE html>
<html> 
    <head>
        <title>@Model.Title</title>
        <meta property="og:title" content="@Model.Title"/> 
        <meta property="og:image" content="@Model.Image"/> 
        <meta property="og:url" content="@Model.Url"/>
        <meta property="og:description" content="@Model.Description"/>
        <meta property="fb:app_id" content="@Model.AppId"/>

    </head>
    <body>
    </body>
</html>

我还有一个属性 RedirectUrl,当用户单击链接时应该重定向到该属性。我怎么能在这个页面上做?因为此页面仅针对元标记。单击喜欢的网址时,我想将用户带到另一个页面吗?

4

1 回答 1

1
<meta http-equiv="refresh" content='0; url=@Request.QueryString["ReturnUrl"]' />

或者使用js和document.location。

于 2012-05-22T21:14:04.007 回答