BoldDesk®Customer service software offering ticketing, live chat, and omnichannel support, starting at $49/mo. for 10 agents. Try it for free.
$('#fileExplorer').ejFileExplorer({
path: "~/content/images/FileExplorer/",
ajaxAction: "/FileExplorer/FileActionDefault",
ajaxSettings: {
upload: {
url: "/FileExplorer/Upload{0}", dataType:"jsonp"
}
}
}); |
public ActionResult Upload(string path, FileExplorerParams args, string action)
{
opeartion.Upload(args.FileUpload, args.Path);
return Json("");
} |