我想在iframe中加载(M V C)视图。但我试图在iframe中加载的视图不包含任何操作,我手动添加它。为清晰起见假设
Index.cshtl => View
public ActionResult Index() => Action of index view
{
return View()
} This view loads perfectly in iframe
现在
Test.cshtml => View
No action for this view & I want to load this view in iframe.
答案 0 :(得分:0)
我找到了解决方案,我们只需将requet发送到 Action
,其中 Test view
的调用方式如下:
<iframe src="/controllername/actionname?viewname"></iframe>
这种设置在我的情况下可能在你的情况下是不同的。我希望它有所帮助。