(Srinath MS) jQuery is the concise JavaScript library that makes your client-side code interactive with less pieces of code stitched together. It’s easy to grasp this language in a similar fashion to JavaScript. It has a simplified event handling model with a tiny footprint.
Tag: Development
Web Forms Model Binding Part 2: Filtering Data (ASP.NET vNext Series)
(Scott Guthrie) The next releases of .NET and Visual Studio include a ton of great new features and capabilities. With ASP.NET vNext you’ll see a bunch of really nice improvements with both Web Forms and MVC – as well as in the core ASP.NET base foundation that both are built upon.
Using jQuery’s Pipe() Method To Change Deferred Resolution
(Ben Nadel) I’ve really grown to love the Deferred functionality added in jQuery 1.5. Not only does it allow for new kinds of functionality, it also allows existing success and error handlers to be bound in an easier-to-understand, less condensed format.
How to search recursively for files
(Ged Mead) I’ve seen a lot of posts where someone is asking for a way to search through multiple levels of information. Searching for files of a particular type in a group of folders is one such example, but I’ve seen many other variations.
jQuery Autocomplete with Razor Web Pages and a SQL CE Database
(Mike Brind) There are a number of autocomplete solutions for jQuery, including the widget that comes as part of the jQuery UI library. This article looks at incorporating the jQuery UI Autocomplete widget into a Razor-based ASP.NET Web Pages site.
ASP.NET MVC 3: Creating a Simple Sign-Up Form
(Vincent Maverick Durano) In this article I’m going to demonstrate how to create a simple sign-up form using ASP.NET MVC 3. So basically in this demo you will learn the following:
Advanced Task Parallel Library Continuations
(Jeffrey Juday) .NET Parallel Programming involves more than parallel workloads and concurrency safe data structures. Task Parallel Library (TPL) also features patterns and data structures for ordering and arranging a workload’s execution.
Volatile Fields
Optimisation techniques used when compiling or running software that uses the .NET framework can lead to unexpected results. One situation that causes problems is performing non-volatile reads of fields in multithreading or parallel programming scenarios.
Jquery and ASP.NET- Set and Get Value of Server control
(Jalpesh P. Vadgama) Yesterday one of my reader asked me one question that How can I set or get values from Jquery of server side element for example. So I decided to write blog post for this. This blog post is for all this people who are learning Jquery and don’t know how to set or get value for a
Leverage Lazy Loading in .NET 4.0
(Eric Vogel) Lazy loading is a common design pattern often used for constructing resource-intensive objects. It’s also frequently used in conjunction with the singleton, and/or factory patterns. Lazy loading entails constructing an object at the point it’s needed, rather than when it’s declared. If
