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.
Here is the way to filter or to sort dataset and then you can bind into your datagrid If intEventID = 0 Then ds = DataAccess.Events.GetAllEventsByRegionID(Me.radStartDate.SelectedDate, Me.radEndDate.SelectedDate, intRegionID, intVenueID) Else ds = DataAccess.Events.GetEventByIDDS(intEventID) End If ‘this…
Sometime when we have Enum , we want to use it /bind it on the list as well with a better description/ word. With this method you can bind enum to a list which display its…
I found a simple collapsible panel developed by a guy called Darren Ingram and I’d definitely recommend it to anyone wanted to implement collapsible panel. His Jquery implementation of collapsible panel is very simple. It just…
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…
Let’s say you have some file that allow people to download it but you don’t want to expose the actual path for security reason. Here is the way of doing it, You need to read the…
This snippet code is credited to Scott’s Hanselman, This Resolve URL function is used where you want to implement it on your business layer. Methods: #region “Image URL helpers” public static string ResolveUrl(string originalUrl) { if…