0

我想在 iframe 中加载(MV 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. 
4

1 回答 1

0

我找到了解决方案,我们只需将请求发送到调用的Action位置,Test view如下所示:

  <iframe src="/controllername/actionname?viewname"></iframe>

在我的情况下,此设置可能在您的情况下有所不同。我希望它有所帮助。

于 2012-05-26T09:00:20.847 回答