(Richard Carr) A pipeline is a chain of connected steps that process information. In object pipelines, each step receives an object and performs an action using it before passing an object to the next step. This repeats until every step is complete.
Tag: Development
A Glance at the jQuery UI
(V.N.S Arun) Every web developer has a good impression of jQuery for performing the client side operations, doing asynchronous javascript calls and traversing through elements on a web page due to its stability and ease of use. Similarly, a library called jQuery UI, which works on top of the jQuery
Dynamic Menus in ASP.NET MVC 4 using EF Code First and jQuery
(Sumit Maitra) By default ASP.NET MVC Project Templates come with a Menu that is hardcoded for each controller. However in a real-life scenario, more often than not, we need our Menus to be dynamic and loaded and managed with certain amount of flexibility. In this article, we will see how to create
Experimenting With RESTful Error Response Codes And CFThrow’s ErrorCode Attribute
(Ben Nadel) Earlier this week, in my comments about understanding MVC (Model-View-Controller) architecture in ColdFusion, I was describing my API workflow to Steven Neiland. When processing a RESTful request, I tend to use a CFTry-CFCatch-CFThrow workflow that short-circuits request processing using
How to access the input control’s data at Server side during Client Callback : A useful trick
(Brij Mishra) Client callback is one way to update the webpage without performing the full page postback. It maintains the Client state while updating the Webpage. During Client callback the webpage runs through modifies version of Page Life Cycle.
Consuming an ASP.NET Web API Using HttpClient
(Bipin Joshi) HttpClient is a modern HTTP client for .NET applications. It can be used to consume functionality exposed over HTTP. For example, a functionality exposed by an ASP.NET Web API can be consumed in a desktop application using HttpClient. Using HttpClient you can send requests and receive
Exposing Custom event from custom control
(pranay) In this post I m going to discuss about registering custom event in custom control. Recently In my project I have created user control it’s consist of one label control and dropdown box. This user control is common control which can be used in whole project to avoid writing repeated code fo
A Better Understanding Of MVC (Model-View-Controller) Thanks To Steven Neiland
(Ben Nadel) In my web applications development, I use and love ColdFusion components! However, my use of them is definitely sub-optimal. My approach makes use of a two-tier model consisting of what might loosely be thought of as a Controller and a Gateway layer.
A Match Made in Http Heaven – ASP.NET Web Forms and WebAPI
(Joshua Holt) With the introduction of MVC 4 Microsoft has created a fantastic new way for developers to expose data via HTTP service. WebAPI is extremely easy to configure when compared to WCF services, and can send content in a multitude of formats.
Custom strongly-typed HtmlHelpers in ASP.NET MVC
(Daniel) The original release of ASP.NET MVC used HTML helpers with a syntax like the following:
