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

Add to Technorati Favorites

Locations of visitors to this page

All C# Feeds in one place!

View Brendan Enrick's profile on LinkedIn

Brendan Enrick's Facebook profile

Navigation

Archives

Advice Sites

Articles

Blogs

Music

Browse by Tags

All Tags » Performance
Using a DropDownList without ViewState
One of the most ViewState heavy controls is the DropDownList. It stores in ViewState the Text and Value for every ListItem in the DropDownList. This means large Lists can get really nasty when ViewState comes into play. They also include all of these Read More...

by Brendan | 5 Comments

Performance with DropDownLists and ViewState
One problem I've noticed on a bunch of sites is a large amount of ViewState. I'm not going to sit here and explain all about ViewState. There are PLENTY of sources for information on that piece of technology. So in an extremely short description of what Read More...

by Brendan | 7 Comments

Try Catch Performance in CSharp: A Simple Test Response
I read an interesting little post about a Try Except Performance Test Using Python written by Patrick Altman . As he mentioned, I have also had discussions with people about this exact topic in the past plenty of times. He was testing the performance Read More...

by Brendan | 0 Comments

Filed under: ,

Memory Management: Generics vs objects
One of the most important parts of software development is memory management. Memory management is important for every software application. If one is to write a well developed software application, one must have a fair bit of knowledge in the area of Read More...

by Brendan | 2 Comments

Filed under: , ,

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 | 4 Comments

Generic List AddRange, Remove, and Count Performance
The .NET System.Collections.Generic.List class is not a linked list as non-.NET users might expect. This list class is actually more like an array list than a linked list. Because of this it has some of the benefits of arrays. Simply because of the array Read More...

by Brendan | 1 Comments

C++ List Operation Performance
I am fairly certain that the C++ Standard Template Library's list object's size function is an O(n) operation. For those of you less algorithmically informed people I am saying that a linked list which uses pointers to the next object in the list Read More...

by Brendan | 0 Comments

Filed under: