I'am trying to use backload (https://github.com/blackcity/Backload) to upload images to a mvc application we are currently building. It is supposed to be able to store images in database but I had no luck finding an example that demonstrates this features.
Anyone had luck with this?
thanks
We use the database feature in our commercial product. I have to say that we use a custom version developed for us. As far as I know the database feature is only available for the Enterprise edition along with the source code and support. It's not cheap but worth it.
Read here: https://github.com/blackcity/Backload/wiki/Configuration#database-configuration-element
I had a similar requirement and didn't want to use the entityframework, so this is how I handled it :
Custom Controller :
Event handler method :
Javascript upload in view
So what is does is send a request to the controller ( passing in some specific custom params ) and then I attach a custom event to the FileUploadHandler to call my custom handler on "StoreFileRequestFinished", pretty simple actually.