Skip to content

mhtsbt/MvcUpload

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MvcUpload

Simple put the following-line inside your "Configure"-method:

public void Configure(IApplicationBuilder app) {

  app.UseMvcUpload(new MvcUploadOptions() {
    Route = "/upload",
    UploadsFolder = "Content"
  });
}

It will detect any POST-method containing files, and copy them to the selected folder

CkEditor configuration

CKEDITOR.replace('editor', {
        extraPlugins: 'uploadimage',
        imageUploadUrl: '/upload',
        uploadUrl: '/upload',
    });

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages