Use Multiple Forms in an ASP.NET page

06/18/2008

Learn how you can use multiple forms in a single ASP.NET page that post to different pages or web sites.

Dynamically Add Controls to a Web Page

05/30/2008

Ever try to dynamically add a control to a web page only to find it's events don't work correctly, property settings don't persist across postbacks or even worse the control disappears after a postback? Dynamic controls can be a bit frustrating when you

Implicit vs. Explicit Implementation of an Interface

05/29/2008

Learn about the two different ways you can implement an interface, the pros and cons of each way and the best cases to use each one.

Access Controls Contained in a MasterPage through a Content Page

05/07/2008

There are times when you want to be able to customize a portion of your masterpage from your content page. There is actually a couple ways to accomplish this task. Follow me in this article as I show you how.

Create a String from a Hash

04/23/2008

Learn how to create a simple class that will encapsulate the logic necessary to generate a hash from a string and then return that hash as a new string.

Use CSS to pin the footer to the bottom of the browser's viewport.

04/08/2008

Use CSS to pin a web page footer to the bottom of the browser's viewport.

Publish a Custom Event

03/30/2008

Learn how to create all the necessary objects in order to publish a custom event.

Implement Business Logic with the SqlDataSource Control

03/14/2008

Learn how you can implement business logic in a 2-tier architecture using the SqlDataSource control.

How to Validate Controls Only if Certain Conditions are Met.

02/21/2008

Learn how to create validation controls that will allow you to write simple code in order to prevent validation if it is not necessary.

Trimming a string in javascript

01/23/2008

Learn how to create javascript functions to duplicate the behavior of the Trim, TrimStart and TrimEnd methods for the .NET String class.

How to determine which objects depend on another object in Sql Server

01/22/2008

A query to search all objects in a database for specific text.