(Gunnar Peipman) Some ASP.NET web applications use web services to get some data that they display to users. Some pages may lay hardly on web services and these pages need some optimization to work better. In this posting I will show you how to use web services behind your ASP.NET page asynchronousl
Tag: Development
Use of Expression Trees in .NET for Lambda Decomposition
(Abhishek Sur) Expressions are the building block of any Lambda Expression. In C# 3.0, .NET framework has introduced a new technique to make use of Anonymous methods a better way. The “Little Gem” LINQ, uses Lambda expression extensively to invoke filter statements to IEnumerable objects and hence m
Using an ASP.Net Master Page with theme and CSS
(Andrew Fenster) Using an ASP.Net master page with a theme and CSS can be tricky. Themes and master pages came out in 2005. There were hundreds of articles written about them at the time. Since then, however, the way we do web development has changed a great deal. It’s time to readdress the subj
How to use the LinqDatasource in .NET
(jalpesh) I have used data source control many times and its great it provides us great features for declarative binding. LinqDataSource Control is a great control and it allows us to bind linq queries without writing any code declaratively. Let’s create a example in that example I am not going to w
ASP.NET MVC: ModelBinding Multiple File Uploads to an Array
(Ashic Mahtab) Web apps often need to upload files. ModelBinding a file upload to an HttpPostedFileBase action parameter is straightforward as long as you know the exact name of the file upload html control. There may be some situations where there are quite a few file upload controls and for whatev
The Tier Interaction Profiler ( TIP )
(Cameron Skinner) There is a little known feature that is part of Visual Studio 2010 Premium edition that I wanted to take a second and let people know about. It is fairly straight forward in its approach, but some of the best features always are! This particular feature is especially helpful when t
Powering Publish And Subscribe Functionality With Native jQuery Event Management
(Ben Nadel) Let’s face it – jQuery’s native event management is straight-up awesome! Between multi-type binding, name-spaced events, proxied callbacks, and function-specific unbinding, there’s not much that it can’t do (and do well, for that matter). Without a doubt, it’s better than any event manag
How to create a Balloon Tooltip in C# and Windows Forms
(Mahesh Chand) To create a balloon tooltip, we just need to set IsBalloon property of ToolTip control to true. The following code snippet create a balloon tooltip and attaches it to a Button control.
Using jQuery To Bind And Trigger Event Handlers On Detached DOM Nodes
(Ben Nadel) Often times, we use jQuery to bind event handlers to DOM nodes that are children of the current document tree. When we do this, jQuery stores the event handlers in the given node’s “events” collection. These bindings remain in place until they are explicitly unbound or until the DOM node
ADO.NET Data Services in the .NET Framework
(V.N.S Arun) This article will concentrate on ADO.NET Data Services in the .NET framework version 3.5. I will also be creating a sample ADO.NET Data service using Microsoft Visual Studio 2008 IDE and will explain various aspects of the service. In order to develop ADO.NET Data services Microsoft Vis
