(Niladri.Biswas) In this article, we will look into some of the aspects of Silverlight Datagrid as
Tag: Development
Accessing a ASP.NET Rest Service from ASP.NET MVC
(John Petersen) One of the most exciting features in ASP.NET is the new Web API. To get started, here is the Web API service:
What is ASP.NET MVC TempData
(Suprotim Agarwal) Simply said, ASP.NET MVC TempData dictionary is used to share data between controller actions. The value of TempData persists until it is read or until the current user’s session times out. Persisting data in TempData is useful in scenarios such as redirection, when values are nee
Creating Service Objects And Value Objects In A Dependency Injection (DI) Framework
(Ben Nadel) For the last couple of months, I’ve been thinking a lot about my level of programming and my architectural understanding. Currently, I feel like I know enough to get most things “done.” But, with the increasing complexity of my applications, especially those that require robust, modular
Creating a JSONP Formatter for ASP.NET Web API
(Rick Strahl) Out of the box ASP.NET WebAPI does not include a JSONP formatter, but it’s actually very easy to create a custom formatter that implements this functionality.
Fluent Interfaces
(Richard Carr) Sometimes the public interfaces of object-oriented libraries lead to complex code that can be difficult to quickly understand. Fluent interfaces change the way that classes are written in order to help developers create code that mirrors natural language.
Fluent Interface Design in .NET
(Eric Vogel) One way to clean up an existing API is to provide a fluent interface to it. The goal of a fluent interface is to simplify the consumption of your API by making it more readable and discoverable.
JQuery Templates/View Engines in ASP.NET MVC
(Jovan Popovic) Microsoft ASP.NET MVC framework follows a standard MVC pattern – the Model contains data that will be shown, the Controller performs actions when some event happens, initializes the Model, and passes it to the View, and the View takes a Model and renders the HTML output that would be
Create SQL Agent job using C# and SMO
(Sethu Srinivasan) You could use the following code sample to create a SQL Agent Job using C#.
Log Analysis Using LINQ Based Log Parser
(Chetan Jagatkishore Kothari and Shalini Nautiyal) In enterprise web applications, web servers are the gateway for the entire request generated from multiple channels like web browsers, mobile devices, etc. Most of web servers provide an elaborate logging mechanism and can be configured to capture
