我有一个MVC应用程序,我试图通过iframe显示。
我收到以下错误消息:
此内容无法在框架中显示
我用谷歌搜索了一些,发现我应该使用元标记。我已经在我的MVC项目的共享布局页面中使用它,但它仍然无效。
<meta http-equiv="X-Frame-Options" content="allow">
呈现HTML:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title></title>
<meta name="viewport" content="width=device-width"/>
<meta http-equiv="X-Frame-Options" content="allow">
</head>
<body>
</body>
</html>
我的iframe:
<asp:Content ID="Content1" ContentPlaceHolderID="MainRegion" runat="server">
<div>
<input type="hidden" name="nSystemId" value="<%= strSystemId %>" />
</div>
<iframe src="http://myServer/Project/Controller/" seamless="seamless" frameBorder="0" height="600" width="400"></iframe>
</asp:Content>