Posts
All the articles I've posted.
Get SqlDataSource To Retrieve DefaultValue of Current User (ExpressionBuilder with ASP.NET 2.0)
Published: at 08:00 PM<p> This article shows how to use Expression Builders in ASP.NET 2.0 to retrieve the current logged in user. DataBinding will not work so Expression Builders is the ticket. A small source file is created, the refernces to web.config are shown and a simple example is built.</p>
Integrating PBWiki with .Net Using the New PBWiki API, The Start of a .Net API
Published: at 08:00 PMIn this article we will demonstrate a technique used to automatically add Wiki Pages to PBWiki using the not quite released API provided by the peanut butter guys. The demonstration will involve integrating scheduled presentations at our Silicon Valley Code Camp on October 7th and 8th each with its own Wiki Page. Without the API, creating and linking the presentation to a Wiki page would have to be an ugly manual process involving the dreaded cut and pasting of URL's.
Fourth MSDN Article Published! "Adding Personalization with Profiles to the ObjectDataSource"
Published: at 08:00 PMThis article explains how the encapsulation of Membership can be extended to include Profile (personalization) information for users. The designers of Membership included a very basic set of attributes to associate with Members (logged in users).
Rendering Images With IIS Verses an ASP.NET 2.0 Handler
Published: at 08:00 PMThis article will compare the difference between rendering images using an HttpHandler and IIS. It will show the different request processing times for a small, medium and large bmp file. It also discusses using the DefaultHttpHandler.
Fast Access to Small Lists On ASPX Pages in ASP.NET 2.0
Published: at 08:00 PMHow to reference small lists of data on an aspx page in asp.net 2.0. The proposed solution here demonstrates a technique taking advantage of the ObjectDataSource's Cache, DropDownLists and Data Dictionaries. (not to mention a little databinding)