ASP.NET paging control

I’m looking for a decent paging control in ASP.NET, much like the Stackoverflow pager. Can anyone recommend one? I’d prefer one that didn’t use Postback either, just a customisable querystring. Answers: Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So … Read more

Uploading a large file (up to 100gb) through ASP.NET application

I need to somehow implement an ability to upload files through an ASP.NET application which is working within our corporate network. The problem is those files are getting increasingly big. At the moment we’re using a very generic asynchronous upload but the problem is that files are getting increasingly big and the max limit of 3.9gb per file set through maxAllowedContentLength since the max value of uint won’t allow anything more. Soon files which users are suppose to upload will exceed this value and might reach up to 100gb in size.