Asp.net mvc编辑器文件上传

时间:2016-02-26 14:03:40

标签: asp.net-mvc kendo-ui

我根据官方网站制作了剑道编辑。我遇到了文件上传的问题,是否有任何命令从pc中选择文件并将其保存在服务器上?

@(Html.Kendo().Editor()
      .Name("editor")
      .HtmlAttributes(new { style = "width: 100%;height:440px" })
      .Tools(tools => tools
          .Clear()
          .InsertImage()
          .InsertFile()
          .Bold().Italic().Underline().Strikethrough()
          .JustifyLeft().JustifyCenter().JustifyRight().JustifyFull()
          .InsertUnorderedList().InsertOrderedList()
          .Outdent().Indent()
          .CreateLink().Unlink()
          .SubScript()
          .SuperScript()
          .TableEditing()
          .Formatting()
          .CleanFormatting()
          .FontName()
          .FontSize()
          .FontColor().BackColor()
          .Print())
      .Value(@<text>@Html.Raw(ViewBag.Html)</text>)
)

1 个答案:

答案 0 :(得分:0)

您应该使用Kendo Upload小部件。看看样本Plunker