Improved Fast Access to Small Lists On ASPX Pages
Friday 27 October 2006 @ 12:34 pm
The article below has a minor improvement to the previous article listed on this web site. Specifically, the previous article used the DropDownList as a mechanism to actually retrieve the data for the purposes of storing it in a local Dictionary. This article simply calls the ObjectDataSource directly to retrieve an IEnumerable type and iterates over that. Below is article with the updates. (Original Article is: http://peterkellner.net/2006/08/30/smalllistaccess/)

more...



Moving From Casini to IIS, Login Fails. How come?
Friday 20 October 2006 @ 10:33 am
What to do when an web application you wrote worked fine in developement (VS2005) but when you move it to IIS, you can no longer login using the Membership Provider you configured under development.

more...



How To Show All Items Using a DropDownList and a GridView Control in ASP.NET 2.0 with VS2005
Saturday 14 October 2006 @ 11:35 am
This article will show how to implement a showall item in a DropDownList using GridView with ASP.NET 2.0. It does it by dynamically changing the SelectParameters associated with a SqlDataSource.

more...