Best way to insert data to multiple table MVC ASP
I have 4 tables. OperationTable, ClientTable, ClientDetails, OperationRes
I have 4 tables. OperationTable, ClientTable, ClientDetails, OperationRes
I was wondering…
I have a VS project in .NET MVC5 which loads an external dll file that uses a lot of memory. In average it uses from 500-1000MB memory.
I have a project that I made in Asp.net with Entity Framework.
I was hoping if anyone can answer a fundamental question that I have regarding refreshing of a web page.
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
I am implementing a reverse proxy for routing requests to a backend server.
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.
I recently encountered a problem where a value was null if accessed with Request.Form but fine if retrieved with Request.Params. What are the differences between these methods that could cause this?