I’m designing a WebApp that will make heavy use of WebFileUploader
, and could benefit from others’ experience.
The files being attached will be .PDF and .JPG/.PNG, and each roughly 300k to 3mb in size.
I’m new to WebFileUploader
, but here’s what I’m envisioning (and where I could use advice) as the workflow:
- User Drags or Selects the files, where their names will display in a list.
- User can select item in list and rename it (what they want the uploaded file to be named).
- User pressed button to
.StartUpload
- I’ll manage the UI so they see the progress and deal with errors.
- …this is where I’m fuzzy on what to do next…
- I use this event to trigger next-steps:
.UploadFinished(files() As WebUploadedFile)
- …and then I iterate over the array of
WebUploadedFile
(s) to process them. - …and I’d like to override the file naming before committing them the the file system or database.
What would be the best process for saving these files as blobs in an associated database? Any pointers or tips (or warnings) for traditional post-upload processing is appreciated!
5 posts - 4 participants