(Richard Carr) The lock statement provides a simple way to block access to critical sections of code in multi-threaded and parallel software. When more flexibility is required, the members of the Monitor class can be used to achieve similar thread synchronisation.
Tag: Development
ASP.NET Multiple File Upload With Drag & Drop and Progress Bar Using HTML5
(Akram El Assas) Few days ago, I was looking for an ASP .NET file upload control with multiple file selection, progress bar, no additional browser plugin required, and other enhanced features. After many googling and testing, I didn’t find what I was looking for.
ASP.NET Session States in SQL Server Mode (Session State Story)
(Abhimanyu K Vatsa) Introduction to sessions states and explains the situation where a web site is hosted by multiple web servers, it becomes necessary to use something like the SQL Server feature that offers centralized storage of a session state in a Web farm. This step-by-step article demonstrate
Dealing with large files in ASP.NET Web API
(Filip W.) There are a couple of things to consider when dealing with large file uploads and ASP.NET Web API. First of all, there are typical issues related to hosting within IIS context, and the limitations imposed on the service by default by the ASP.NET framework.
Using TypeScript in ASP.NET MVC Projects
(shiju) In the previous blog post Microsoft TypeScript : A Typed Superset of JavaScript, I have given a brief introduction on TypeScript. In this post, I will demonstrate how to use TypeScript with ASP.NET MVC projects and how we can compile TypeScript within the ASP.NET MVC projects.
Your Own Membership System For ASP.NET MVC – Part I
(K. Scott Allen) Building a piece of software to manage users is easy, but only if you know exactly what you want. After all, most of the code inside the various existing ASP.NET providers consists of straightforward parameter validation and data access. While this membership code is simple in isola
Change In ColdFusion Date::getTime() Method In ColdFusion 10
(Ben Nadel) In ColdFusion, when you create a true date/time object, it is represented, behind the scenes, as a Java Date object. Now, this is an undocumented feature of ColdFusion, so everything else in this entry should be viewed through this lens.
Making a switchable Desktop and Mobile site with ASP.NET MVC 4 and jQuery Mobile
(Scott Hanselman) I really enjoy working on and thinking about mobile websites. There’s something about making an experience great on a pocket supercomputer phone that is so much more satisfying than a desktop. I actually got this blog looking nice on mobile devices back in 2006 when nobody was mobi
ASP.NET Web Pages – Creating Custom Validators
(Mike Brind) Version 2 of the Web Pages framework includes a new validation framework. Included are a number of specific validators that cover common scenarios such as validating for presence, data type or range.
Locking for Thread Synchronisation
(Richard Carr) Using multi-threading or parallel programming techniques can improve the performance and responsiveness of software but introduces the risk of race conditions that can cause intermittent bugs. These can be mitigated with appropriate locking.
