Welcome to Professional ASP.NET - Chris Love's Official Blog Sign in | Join | Help

Chris Love's Official ASP.NET Blog

Chris Love's Helpful tips, tricks and pragmatic development knowledge for the ASP.NET world.
ASP Insider

Browse by Tags

All Tags » Tips   (RSS)

Microsoft Store

Sites Die, Get Redone and Don’t Live Long
Today I was watching the Twitter stream out the corner of my left eye when I caught Paul Irish chatting with Stefan Hayden about why browsers do not include jQuery natively . As the thread progressed the tweet that caught my attention got me thinking: Read More...
How to Take Screen Shots From An Android Phone or Tablet
Taking screen shots of an application is essential to the development and marketing process. You really need something to reference to any marketing or advertising that people can see. After all how will I have a good idea if your application will actually Read More...
Keyboard Enabling a Web Form
Making any application as user friendly as possible is the primary goal of any User Experience Engineer, that is the person who is responsible for creating the applications actual UI layer. Back in the time of long, long ago I learned that users like Read More...
Blocking Unwanted Web Sites to Improve You Life
Back in March I posted a quick announcement about the release of Internet Explorer 8 and a common problem I was having at the time. I think I finally determined what the issue was, and it was not really Internet Explorer 8, but rather sites that were Read More...
String or binary data would be truncated
I am sure just about any of us that have done any development work against a database, and who hasn’t, has come across this error, ‘String or binary data would be truncated’. This is really a warning more than it is an error, but will Read More...
Using Regions in Code Files
Recently I have been confronted with a movement that seems to hate using #Regions in source code files. Personally I really like using regions and I absolutely like the ability to collapse sections of code I am not directly working with. The opposing Read More...
A New ASP.NET Blog from Down Under
The web is great, it has helped me build relationships with folks from all over the world. Recently Bartek Marnane contacted me to let me know he was kicking off a new Blog about ASP.NET. Bartek is from Australia, which I am going to visit one day before Read More...
‘ScriptManager’ is ambiguous in the namespace ‘System.Web.UI’
I suddenly found myself getting this error the first time I tried to run a freshly minted ASP.NET 3.5 web site with the ScriptManager in place on the Master Pages. I did a quick search, but only found some references from the time before 3.5, and they Read More...
Enforcing a Custom 404 Page in ASP.NET
Yesterday Google started hijacking 404 status codes through the Google Toolbar from unknowing Web sites to show pages with ads. TechCrunch even has a poll asking if you think the Google hijacking is a good thing or not. While Google publicly states they Read More...
The Beauty of a Base Page Class
I never, and I mean never use the System.Web.UI.Page class as the class I inherit my Web Forms. I have a base class that I inherit from the Page class that has a set of methods and properties that I reuse many times over. Often I create more classes that Read More...
GeekSpeak on httpHandlers and httpModules
I am excited to announce that I will be doing a GeekSpeak with Glen Gordon and Lynn Langit on November 28th . I will be showing how to practically use httpModules and httpHandlers. You can register to be a part of the live GeekSpeak presentation or catch Read More...
Links of the Week October 5 2007
Setting Up Custom Web.Config files for Development, QA and Production Servers - Scott Guthrie shows us a very valuable set of tricks for Enterprise development. What's New in .NET 3.5 and Visual Studio 2008 (Orcas) - You just do not see enough articles Read More...
How to Replace Ambiguous Values
Recently I had a friend tell me they were working on a project where they had to hand scrub the data in their database. In particular that day they were manually scrubbing values like 'Not Applicable', 'NA' and 'N/A' which all meant the same thing. But Read More...
Cures for Common Aliments - Using a RequiredFieldValidator with a RadioButtonList, DropDownList, ListBox and any other ListItem Control
I have decided that it would be useful to post a series of solutions to some fairly common problems encountered by many ASP.NET programmers. Some of these cures will be second nature to many, but they will all be a useful reference at some point in your Read More...