1

我是 MVC 的新手,我需要在 iframe 中放入一个视图,该视图返回页面的内容(样式/css、文本/html、图像等)和包含应用程序主菜单的视图,来自索引看法。

谁能帮我这个?

在视图中返回内容的代码行是:

@Html.Raw(System.Text.Encoding.ASCII.GetString(@Model.Content))
4

1 回答 1

1

只需尝试创建具有返回视图的操作的控制器。

public class MyController
{
   public ActionResult Index()
   {
       return View();
   }
}

索引视图内容:

@Html.Raw(System.Text.Encoding.ASCII.GetString(@Model.Content))

在那之后

<iframe src="localhost/mycontroller">    
</iframe>
于 2013-06-06T11:08:32.023 回答