Large or asynchronous file uploads in ASP.NET MVC
The challenge of uploading large files in ASP.NET through HTTP is not a new challenge. It’s been covered extensively, by Jon Galloway, Stephen Walther, Milan Negovan and by one of the most active ASP.NET forum threads in history. In addition to handling large files, users often request an experience that shows the progress of an upload as it occurs. When you have either or both of these requirements, or if you simply need direct control of a stream of file data uploaded from a browser, you invariably hit the wall. So, I set about solving the problem in an ASP.NET MVC-specific way
Continue reading "Large or asynchronous file uploads in ASP.NET MVC" »


Socialized