Been scratching my head a lot for the past two week about trying to figure this out.
Summernote (https://github.com/HackerWins/summernote) is my preferred editor, but I need the images to be uploaded to S3 instead of being saved as base64, as this will be too large for the database, etc. On the summernote github page I have found this (https://github.com/HackerWins/summernote/issues/72), but there is not a .net code sample.
I am fine with uploading files to S3 from my asp website, my problem is that how should I 'send' the file to my webmethod, yes I am using a webmethod as the summernote code is handled in js, in a way that asp would understand it?
I have tried sending the 'file', and receiving it as an object on my server side, but this only results in a "[object File]" string being received.
I am coding in VB, but C# code will also be appreciated!
Thanks in advance.