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 » ASP.NET
A Note on ASP.NET Session
A while back, I was asked a question by one of the junior developers here at Lake Quincy Media. I had him working on a little feature on an ASP.NET site which could be easily handled using Session. "Where is session stored, on the server or the client?" Read More...

by Brendan | 0 Comments

Filed under: ,

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

Passing ViewData to User Controls in ASP.NET MVC Preview 4
Yesterday I was upgrading an ASP.NET MVC site from Preview 2 to Preview 4. For the most part this is an easy process. Some assemblies needed to be updated and some information updated in the web.config file. Route declaration changed, but the same information Read More...

by Brendan | 2 Comments

Filed under: ,

Handling Password Recovery
I recently answered a blog post about how to handle password recovery in ASP.NET. My first thoughts when I read this questions are along the lines of, "Ah! Don't recover passwords!" With any authentication system it is important to remember this one thing Read More...

by Brendan | 4 Comments

Filed under: ,

Web Application Projects are better than Web Sites
Recently I was explaining the difference between the web application project and the web site to the budding developers I've been working with. I suffered greatly while using web sites instead of web application projects. I remember having a great deal Read More...

by Brendan | 3 Comments

Filed under: ,

Generic Recursive Find Control Extension
Earlier today I posted about a Recursive Find Control Extension Method . I was informed recently by Steve Smith that I should check out the generic find control method which Aaron Robson has on his blog . He has some pretty nice methods there, so I just Read More...

by Brendan | 3 Comments

Creating a Recursive FindControl Extension Method
So one of the most useful methods for ASP.NET development that never seems to be included in ASP.NET is a recursive find control method. This problem results from the standard FindControl method on controls only searching within that control. It only Read More...

by Brendan | 9 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

Creating a Simple Hello World Application Using MVC
So I am finally sitting down to play with the ASP.NET MVC Framework. I've installed Visual Studio 2008 on my machine. You can obtain a 90 day free trial of Visual Studio 2008 from Microsoft if you don't own a copy. There are also Express Editions of Visual Read More...

by Brendan | 3 Comments

Filed under:

Why the TextBoxWatermark is the Best AJAX Control
There are plenty of AJAX tools being used everyday. The AJAX Control Toolkit can be likened to a pack of Bertie Bott's Every Flavor Beans ; there are far too many choices. Some tools you'll love and some are as useless to you as an earwax flavored bean. Read More...

by Brendan | 0 Comments

Filed under: ,

ASP.NET Rich Text Editor Control
I've recently come across a large number of blog posts talking about a new Rich Text Editor on CodePlex released under the Microsoft Public License (MS-PL). Some of the blog posts talking about this interesting control can be found here , here , here Read More...

by Brendan | 7 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

Infinite Loop in a Property
Earlier today I was trying to debug a Stack Overflow Exception I was receiving. While debugging I was stepping into the function where the problem was occurring. I could not seem to find the problem. A line of code was calling a function and passing it Read More...

by Brendan | 0 Comments

Filed under: , ,

Dynamically Register an Asynchronous Postback Control with a ScriptManager
In order to use an update panel you have to specify the triggers either individually or by setting the ChildrenAsTriggers property of the UpdatePanel. Sometimes you may need to set these triggers dynamically such as if the desired trigger is inside of Read More...

by Brendan | 2 Comments

Filed under: , ,

Accessing a MasterPage ScriptManager from a Content Page
Recently I had forgotten how to access the ScriptManager in my MasterPage from one of the Content Pages. There is a static method on the ScriptManager class called GetCurrent() which will allow access to the current instance of a ScriptManager. This is Read More...

by Brendan | 9 Comments

Filed under: , ,

More Posts Next page »