我正在执行以下控制器操作以在页面中加载富文本编辑器
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文件后,我可以对该内容进行更改。这是
的初步观点这是富文本编辑器内容的更改视图
我想将更改的内容传递给另一种方法我该怎么做