August 18th, 2006 by Rich Zygler
tags: .NET, ASP.NET, C#, JSON, Visual Studio 2005, XML | 1 Comment »
I kept getting this on a page that did nothing but reference a code behind.
Validation(): Element 'html' occurs too few times.
This is because VS2005 is performing HTML validation by default. Yuk. You can turn this off by going to:
Tools --> Options --> Text Editor --> HTML --> Validation
Uncheck ...
August 16th, 2006 by Rich Zygler
tags: AJAX, JSON, JavaScript, MySQL, PHP, XML | 1 Comment »
I'm working on a project where I thought a little AJAX magic would help the user interface a bit, so I've been adding that functionality piece by piece. For this web site, we've previously standardized on using the ADODB PHP database abstraction library for all our queries.
The particular circumstances ...