(Davin Martyn) Ajax (Asynchronous JavaScript and XML) is a new web development technique for interactive websites. With the help of AJAX we can develop web applications and retrieve small amounts of data from a web server. AJAX consists of a different type of technology.
Tag: Development
ColdFusion 10 – Cross-Linking Standard Session Management To WebSocket Session Management
(Ben Nadel) By now, we’re all used to ColdFusion’s standard session management – the one that’s typically powered by session cookies that get posted back to the server with every request. ColdFusion 10’s built-in WebSocket server does not operate on cookies; instead, the client (browser) establishes
Inside the Concurrent Collections: ConcurrentBag
(Simon Cooper) Unlike the other concurrent collections, ConcurrentBag does not really have a non-concurrent analogy. As stated in the MSDN documentation, ConcurrentBag is optimised for the situation where the same thread is both producing and consuming items from the collection.
Readable DOM Ready Event Handlers
(K. Scott Allen) One reason some people don’t like JavaScript, I think, is because idiomatic JavaScript favors fewer keystrokes and CPU cycles over readability. There is a large amount of script code that is hard to read, and even harder to maintain and change.
Identifying .NET 4.0 Special Folders
(Richard Carr) The Microsoft Windows environment includes many special folders, the paths of which can be identified using the Environment.GetFolderPath method. The number of such folders has doubled since the release of the .NET framwork version 1.1
What are TCHAR, WCHAR, LPSTR, LPWSTR, LPCTSTR (etc.)?
(Ajay Vijayvargiya) Many C++ Windows programmers get confused over what bizarre identifiers like TCHAR, LPCTSTR are. In this article, I would attempt by best to clear out the fog.
Working with Asynchronous Operations in ASP.NET MVC
(Bipin Joshi) Whenever you call action methods in an ASP.NET MVC application, by default they are executed in synchronous fashion. In order to improve the overall performance and responsiveness of your application you may wish to execute the code asynchronously.
Exploiting the .NET Validation Frameworks
(Peter Vogel) Much of the Microsoft .NET Framework is designed to support creating components: business objects that not only carry their business logic with them from one environment to another, but also carry some additional "meta code" that can be used to drive the presentation layer of whatever
Claim based Authentication and WIF : Part 2
(Brij Bhushan Mishra) This post is second part of my post on Claim based Authentication. This part mainly discusses WIF and demonstrates a sample step by step. You all can access my first post from here.
ColdFusion 10 – WebSocket Authentication And The onWSAuthenticate() Event Handler
(Ben Nadel) As we saw yesterday, neither session cookies nor session scope are available during a ColdFusion 10 WebSocket request. Authentication and state management have to take place directly inside of the WebSocket control flow.
