Finally, a SelectedItems Option (yaaay)

The .NET framework does not include a way to get the selected items from a CheckBoxList, ListBox, DropDownList, or RadioButtonList, without iterating the Items collection. This post provides an extension method for retrieving the selected items from any ListControl.. [More]
Bookmark and Share

ASP.NET MVC: Store Routes in the Database

Routing in the new .NEW MVC Framework is a synch to customize. This post shows how to move route definitions out of the global.asax.cs and into the database.. [More]
Bookmark and Share

You Want To Trace.Write... How About No!

Diagnostics tracing getting you down? This post explains differences between ASP.NET Tracing and System.Web.Diagnostics Tracing.. [More]
Bookmark and Share

A Generic JSON Serialization Extension Method Starring DataContractJsonSerializer

Providing data in the JSON format has become a fantastic way to deliver information to a client side consumer over the web. This post provides steps to creating a generic ToJSON extension method to make JSON serialization as easy as possible in the .NET 3.5 framework.. [More]
Bookmark and Share

ASP.NET 3.5 Extensions CTP Preview Released

Microsoft has released the ASP.NET 3.5 Extensions CTP Preview.. [More]
Bookmark and Share

ASP.NET 3.5 Extensions Public Preview Announced

Scott Guthrie has announced ASP.NET 3.5 Extensions public preview will be released next week.. [More]
Bookmark and Share

Applying AJAX Using ASP.NET 1.1

Create AJAX calls using ASP.NET 1.1 and javascript. [More]
Bookmark and Share

Secure Session State Transfer Between ASP Classic and ASP.NET

  I was discussing Session State interoperability between ASP Classic and ASP.NET with one of my developers. Obviously Microsoft did not provide us, the developer community, with a means of making our ASP.NET applications backwards compatible with ASP Classic. I h... [More]
Bookmark and Share