Its very simple, free and SEO Friendly. Submit Now....
Thursday, February 26, 2009
Review: ASP.NET 3.5 AJAX Unleashed
Using Expression Builders in ASP.NET
ASP.NET offers a variety of ways to inject the results of a server-side expression (such as DateTime.Now.ToString()) into the rendered markup of an ASP.NET page. The most common way is to add a Label Web control to the page and then from the Page_Load event handler (or some other suitable event handler) assign the value to display to the Label's Text property. If you ever created web applications using ASP.NET's predecessor, classic ASP, or if you ...Full Article.
Weekend Humor: Features and Complexity
[Full post continued here...]...Full Article.
Cloud Computing, Windows Azure and .NET
[Full post continued here...]...Full Article.
Sync and Sharing for Applications - Live Framework
[Full post continued here...]...Full Article.
Script# Programming in the Large
[Full post continued here...]...Full Article.
C# 4.0, Dynamic Programming and JSON
C# 4.0 features a new dynamic keyword that allows you to mix in a bit of late-bound code in the midst of your otherwise statically typed code. This helps cleanup the string-based programming mess that is a characteristic of late-bound code. In fact, there are a number of scenarios that would benefit from dynamic typing in my opinion in addition to interop with other dynamic code (such as Silverlight talking to the DOM or a .NET app talking to Office automation APIs). For example: