我有一个类似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属性,当用户点击链接时应该重定向到。 我怎么能在这个页面上做?因为此页面仅针对元标记完成。我想在点击喜欢的网址时将用户带到另一个页面?
答案 0 :(得分:1)
<meta http-equiv="refresh" content='0; url=@Request.QueryString["ReturnUrl"]' />
或者使用js和document.location。