如何在iframe中加载View?

时间:2012-05-26 08:43:23

标签: javascript jquery asp.net-mvc

我想在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. 

1 个答案:

答案 0 :(得分:0)

我找到了解决方案,我们只需将requet发送到 Action ,其中 Test view 的调用方式如下:

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

这种设置在我的情况下可能在你的情况下是不同的。我希望它有所帮助。