I want to upload a file from the client to the server. Is there a way to upload a file with SignalR or must i need a Controller for this?
相关问题
- Carriage Return (ASCII chr 13) is missing from tex
- How to store image outside of the website's ro
- 'System.Threading.ThreadAbortException' in
- Request.PathInfo issues and XSS attacks
- How to dynamically load partial view Via jquery aj
While SignalR cannot help with the actual upload, it can be used for updating the client with progress while a file is uploaded.
This file uploading using file input bootstrap plugin (krajee) You can also upload file without using this plugin.
Hub class code
SignalR is for real time messaging not uploading files.