Life, Surf, Code and everything in between
White Papers
|
Free Tools
|
Products
|
Message Board
|
News
|
Web Log Home
Site Home
Subscribe to Feed
Contact
Search
Posts - 1136
Comments - 14435
since 1997
Personal Links
Photo Album
My Noise
Message Board
Find this content useful? Consider making a small donation to show your support.
Now Reading
The Art of Unit Testing: with Examples in .NET
by Roy Osherove
Professional .NET Framework 2.0 (Programmer to Programmer)
by Joe Duffy
ASP.NET MVC Framework Unleashed
by Stephen Walther
Twitter Status
Weblog Posts in April 2009
IIS 7 Error Pages taking over 500 Errors
April 29, 2009 @ 1:59 pm
I've been running into a problem with IIS returning error pages when my application is actually returning 500 errors along with custom content. IOW, IIS is taking over error display completely even if I send my own content for errors. This has some profound effects on error handling and on some custom handler implementations that relying on returning error information to the client. Thankfully there's a new ASP.NET 3.5 property that helps with this problem, although it's a rather obscure fix for this issue.
17 comments
Creating Visual Studio Templates from your Web Projects
April 27, 2009 @ 7:38 pm
Visual Studio has the nice capability to create project templates from existing projects and with a little bit of work it's real easy to create a project environment that's ready to roll without having to dig for related components first. This applies to Web projects more than anything for me as I have a fair bit of generic utility code that is project specific and needs to be added to just about all projects. Templates make this real quick and easy. Here's how.
15 comments
JSON Serialization of a DataReader
April 24, 2009 @ 5:14 am
On a few occasions recently I've ended up with DataReaders in my AJAX services. The data comes from low level componets with data from APIs over which I have no control and it feeds only feeds data from DataReaders. Rather than converting these readers into more complex data structures it can be more efficient to directly turn these DataReaders into JSON. Here are a couple of ways to do this using a custom serializer and a JavaScriptConverter for JavaScriptSerializer.
6 comments
Native JSON Parsing: What does it mean?
April 19, 2009 @ 8:20 pm
The new native JSON support in new and upcoming browsers is going to improve JSON parsing performance. But there are still issues you need to deal with like the age-old JSON issue of date persistance with a JavaScript date literal. In this post I discuss various aspects of the native JSON parsers and how you can have one set of code that deals with either native parsers or the existing JSON2 interface.
12 comments
A Closable jQuery Plug-in
April 14, 2009 @ 5:01 am
I've found it very useful to have a closeable plug-in that hide the content of an HTML element providing a visual close image cue. Almost every UI I build these days requires either closing pop up windows or even more commonly requires that items are removed and visually hidden which usually implies 'close' behavior. In addition to removing a bunch of HTML markup, having a plug-in is also quite useful for server controls especially if multiple behaviors (plug-ins) need to be applied.
11 comments
I can’t find my Find Dialog in Visual Studio
April 10, 2009 @ 5:00 pm
Ironic ain’t it? I can’t find my Find Dialog in Visual Studio and I can’t use find to find it. Ok funny, but at the time it didn’t seem too funny because I needed to really find something in a rather large JavaScript source file. But when pressing Ctrl-F (or Ctrl-H for Find/Replace) in Visual Studio rather than getting the familiar Find Dialog I got a slight flicker and a whole lotta nothing...
8 comments
Web Application Project generated CodeBehind .designer file not being updated
April 07, 2009 @ 1:18 pm
I've been running into problems with WAP page CodeBehind files (.designer.cs) files not being updated from time to time. Here's how this can happen and a few ways to fix the problem and get on with life.
12 comments
A Localization Handler to serve ASP.NET Resources to JavaScript
April 02, 2009 @ 1:08 pm
Here's an implementation of an HTTP handler that can serve ASP.NET Server resources to JavaScript clients easily. The handler can provide both local and global, normalized server resources to client JavaScript pages so that you can localize resources in one place on the server. Use standard Resx resources or our custom database resource provider.
31 comments
Updated Westwind.Globalization Data Driven Resource Provider for ASP.NET
April 01, 2009 @ 3:27 am
I've updated the ASP.NET Data Driven Resource Provider code base and examples. There are a number of small improvements based on user feedback as well as a few new features like a new JavaScript Resource Handler that can provide server resources to JavaScript code easily.
15 comments
Archives
March, 2010 (1)
February, 2010 (1)
January, 2010 (3)
December, 2009 (5)
November, 2009 (5)
October, 2009 (6)
September, 2009 (6)
August, 2009 (8)
July, 2009 (7)
June, 2009 (5)
May, 2009 (6)
April, 2009 (9)
March, 2009 (6)
February, 2009 (9)
January, 2009 (7)
December, 2008 (9)
November, 2008 (8)
October, 2008 (8)
September, 2008 (13)
August, 2008 (18)
July, 2008 (8)
June, 2008 (8)
May, 2008 (11)
April, 2008 (16)
March, 2008 (21)
February, 2008 (13)
January, 2008 (15)
December, 2007 (24)
November, 2007 (13)
October, 2007 (17)
September, 2007 (21)
August, 2007 (27)
July, 2007 (26)
June, 2007 (20)
May, 2007 (17)
April, 2007 (17)
March, 2007 (20)
February, 2007 (14)
January, 2007 (26)
December, 2006 (21)
November, 2006 (22)
October, 2006 (28)
September, 2006 (26)
August, 2006 (23)
July, 2006 (23)
June, 2006 (21)
May, 2006 (24)
April, 2006 (20)
March, 2006 (27)
February, 2006 (22)
January, 2006 (19)
December, 2005 (25)
November, 2005 (22)
October, 2005 (14)
September, 2005 (14)
August, 2005 (20)
July, 2005 (20)
June, 2005 (9)
May, 2005 (18)
April, 2005 (19)
March, 2005 (26)
February, 2005 (21)
January, 2005 (20)
December, 2004 (15)
November, 2004 (11)
October, 2004 (14)
September, 2004 (15)
August, 2004 (16)
July, 2004 (6)
June, 2004 (10)
May, 2004 (9)
April, 2004 (11)
March, 2004 (11)
February, 2004 (12)
January, 2004 (13)
December, 2003 (15)
Categories
ASP.NET (204)
Personal (68)
.NET (62)
JavaScript (52)
Visual Studio (50)
jQuery (43)
AJAX (43)
LINQ (32)
CSharp (29)
IIS (28)
Vista (28)
HTML (26)
WCF (24)
Localization (21)
Web Services (15)
Windows (15)
FoxPro (14)
Microsoft AJAX (13)
WPF (12)
ADO.NET (12)
COM (9)
XML (9)
Web Connection (8)
Silverlight (8)
CSS (8)
Sql Server (7)
West Wind Ajax Toolkit (7)
ASP.NET (6)
C++ (6)
Hardware (5)
Security (5)
MVC (5)
ISV (4)
Office (4)
Software Development (4)
Html Help Builder (4)
Bugs (4)
DataBinding (3)
HTTP (3)
Help Builder (3)
Live Writer (3)
Source Control (3)
WebLog (3)
Windsurfing (3)
WinForms (2)
Web Design (2)
Speaking (2)
Tools (2)
RegEx (2)
RSS (2)
Maui (2)
Installation (2)
Help (2)
Conferences (2)
Visual Studio (2)
ADO.NET (1)
IIS7 (1)
Addins (1)
Control Development (1)
Graphics (1)
Html Help (1)
iPhone (1)
IIS7 (1)
Networking (1)
Travel (1)
Utilities (1)
Threading (1)
SmartPhone (1)
wwHoverPanel (1)
Web Deployment Projects (1)
© Rick Strahl, West Wind Technologies, 2005 - 2010