richtext编辑器编辑的内容传递给另一个控制器

时间:2015-10-12 05:33:38

标签: c# html asp.net-mvc rich-text-editor richtextediting

我正在执行以下控制器操作以在页面中加载富文本编辑器

    public ActionResult Index()
    {            

        Editor Editor1 = new Editor(System.Web.HttpContext.Current, "Editor1");            

        Editor1.LoadHtml("~/brochuretemplates/myhtml.html");

        Editor1.MvcInit();

        ViewBag.Editor = Editor1.MvcGetString();

        return View();
    }

最初上面的函数将 .HTML 文件加载到包含在项目内的richtext编辑器内容。

加载HTML文件后,我可以对该内容进行更改。这是

的初步观点

enter image description here

这是富文本编辑器内容的更改视图

enter image description here

我想将更改的内容传递给另一种方法我该怎么做

0 个答案:

没有答案