Welcome to AspAdvice Sign in | Join | Help

Orcs Goblins and .NET

I enjoy reading and writing. I hope you enjoy at least the former. I have moved my blog to Brendan.Enrick.com.

Syndication

Tags

News

Locations of visitors to this page

Navigation

Archives

Advice Sites

Articles

Blogs

Music

October 2007 - Posts

Accessing Controls inside of Templated Controls
One question that seems to come up often in the asp.net forums is from people who are trying to access controls within controls using templates. LoginViews and CreateUserWizard controls are two commonly used templated controls. These templated controls Read More...

by Brendan | 6 Comments

Public Strongly Typed Resource Generator
I recently installed an interesting custom tool. It is an Extended version of the resource generator in Visual Studio . The nicest part of this for me is that this one is public instead of internal like the default one. In order to have a centralized Read More...

by Brendan | 2 Comments

Filed under:

Understanding the Queue Data Structure Using a Simple C# Implementation
Introduction The Queue is a very important and common Data Structure in Computer Science. As the name queue suggests, this data structure can be described with an analogy of waiting in a line. There is no cutting allowed in the line, so the first person Read More...

by Brendan | 2 Comments

Using a Numbers Table to Iterate Over Dates
I recently wrote some SQL which would do some work for a single day, but I wanted my code to be able to run once for each day in a date range. Luckily for me, I read Gregg Stark's SQL Blog . He recently posted about how to Iterate Over a List of Dates Read More...

by Brendan | 2 Comments

Filed under: ,

Simple C# Stack Implementation
I've just written a quick little stack implementation for use in explaining the stack data structure. It is written in C# and is not exactly a robust solution, but it works well enough. It is stubbed out with the basics of what is required to have a working Read More...

by Brendan | 0 Comments

Understanding the Stack Data Structure
I found myself recently explaining a few times how the data structure commonly called a stack works. The technical term for a stack would be a Last in First out Data Structure (LIFO). To practically repeat myself, this means that the last object to go Read More...

by Brendan | 8 Comments

.NET 3.5 is Open Source
Some very surprising news has come from Scott Guthrie in a recent blog post he has made . Visual Studio 2008 and .NET 3.5 will be shipping with the source for the base class libraries. As with a lot of the recent technology coming from Microsoft, the Read More...

by Brendan | 2 Comments

Filed under: ,

Numbering the Rows Returned from a SQL Query
Outside of SQL it would be quite easy to number the rows returned from query, but to do so inside of the SQL is a bit more difficult. I recently wanted to be able to number the rows returned from a query in a stored procedure. I am using SQL Server 2000, Read More...

by Brendan | 0 Comments

Filed under: , ,