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

December 2006 - Posts

Microsoft Store

My Year In Review
It has been another year in my life, they just get faster as I grow older. Personally this has been a year full of reflection over my life and how I got here. It has caused me to grow in some very important areas I think. Professionally it has been probably Read More...
ASP.NET 2.0: Your visual blueprint for developing Web applications
I have held off announcing this on the Blog until it got a little further along, but I am priveledged to be the author of an upcoming book, ASP.NET 2.0: Your visual blueprint for developing Web applications . This book is targeted at developers who are Read More...
Visual Studio 2005 SP 1 Available
Yet another breaking release from the mothership, Visual Studio 2005 SP 1 . I installed it today, and well so far everything works! Honestly I have had no time to read the updates and changes, but Scott Guthrie has an entry on VS 05 SP1 . I just can not Read More...
ASP.NET AJAX 1.0 RC is Available
ASP.NET AJAX 1.0 RC is now Available. The updates on the ASP.NET Ajax framework seem to be happening faster than a complete page refresh these days! I barely got to use the last release and yet another one is available. I should have some time to work Read More...
PDC 07 Finally Announced
I was pretty disappointed there was no PDC this year, but I guess we needed some time to actually write some code for ASP.NET 2.0! Anyway, it looks like Microsoft has finally announced the '07 PDC , Sept 30-Oct 5 in Los Angeles. I have yet to go to Read More...
Move the ViewState to Session and eliminate page bloat
In my continuing theme on reducing and eliminating the ViewState from ASP.NET pages I want to begin covering some great new features to help ViewState in ASP.NET 2.0. Last month I talked about persisting the ViewState to memory using the LosFormatter Read More...
Upcoming Triangle Area Events
Next week will be big for those of us around the Raleigh-Durham area because there will be two events for us. Wednesday is a big day for us because Doug Tenure will be doing . NET University , featuring ASP.NET 3.0 technologies at the local Microsoft Read More...
Moving ViewState and Other Hidden Variables to the Bottom of the Page - Update
Earlier I wrote about a method of moving the ViewState to the bottom of the page . The advantages of this are two fold, one is it helps with search engine optimization by getting non-essential content out of the top of the page. Second since it is at Read More...
WPF/E CTP Released
I thought today sure is quite, well we got a little goodie this afternoon. Microsoft released WPF/E, which is Expression CTP to the public. You can download Expression here . I have not had a chance to 'play' with any of the Avalon, WPF or XAML Read More...
Preventing Cross-Site Script Attacks with a Custom TextBox Control
Cross-Site Scripting attacks are still a frequent occurance across the web. Fortunately the ASP.NET framework has a built-in protection against this type of attack. But as good as that is, it is still actually limited to a certain degree. So it is a good Read More...