我根据官方网站制作了剑道编辑。我遇到了文件上传的问题,是否有任何命令从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>)
)