overriding maximum file upload size in ASP.NET
To override maximum file size that can be uploaded in you website, you need to put this in your web.config
To override maximum file size that can be uploaded in you website, you need to put this in your web.config
AI engineer and solution architect in Sydney. Agents, MCP, RAG, Azure, .NET, EV charging. I write about what breaks after go-live.
I was having a problem in my checkout page, the problem that i had was i’ve got this memberID from the checkout page and it’s being passed to another page via query string. This problem doesn’t…
A few days back I’ve got the error message “webform_dopostbackwithoptions is undefined” on the project that i’m working on. The strange thing it happened only when I activated the securepagemodule, when i deactivated the module it…
Initially, I always pass individual object properties through JSON and form the model in the controller as I wasn’t sure how to pass/form a model from Javascript to controller Controller Code Snippet [AllowAnonymous] public ActionResult JsonRegister(string…
Sometimes when you display the data on the datagrid or gridview , you want to create some link. let’s say when you displaying your user detail data in the grid. you want the user to be…
I was having a problem before to get selected item with grid view when you click edit button. After spending sometime researching on the internet. I found that we can get the item that you selected…
I’ve played around with FTP couple of weeks back. My application is required to feed FTP folder with 1000+ files daily. I’ve been googling around and I found one of the methods is to use WebApplication so I…