HTML validator module for .NET

Tuesday, July 31st, 2007

http://www.thejoyofcode.com/Validator_Module.aspx

This looks nice for inline forms - yet another lightbox idea

Wednesday, July 25th, 2007

http://stickmanlabs.com/lightwindow/

Useful JavaScript tit bits - Googlie Spell and Enhanced lightbox

Wednesday, July 25th, 2007

http://orangoo.com/labs/Main/

Time for a new computer?

Tuesday, July 24th, 2007

http://www.hotukdeals.com/forums/showthread.php?p=766075

Useful for .NET caching

Tuesday, July 24th, 2007

http://harishmvp.blogspot.com/2005_06_01_archive.html

Fix those CSS link problems and run in the root when using the built in VS web server

Tuesday, July 24th, 2007

http://weblogs.asp.net/scottgu/archive/2006/12/19/tip-trick-how-to-run-a-root-site-with-the-local-web-server-using-vs-2005-sp1.aspx

Adding a link using JavaScript

Tuesday, July 24th, 2007

function addLink() {

  var closeP = document.createElement("p");
  closeP.appendChild(document.createTextNode("Alternatively, ");

  var closeLink = document.createElement("a");
  closeLink.href = "#";
  closeLink.onclick = function() { window.close(); };
  closeLink.appendChild(document.createTextNode("Close window"));
  closeP.appendChild(closeLink);

  var parentEl = document.getElementById("container"); // this should be the ID of the element this link should be appended to
  parentEl.appendChild(closeP);
}

if (window.addEventListener) { window.addEventListener("load", addLink, false); }
else if (window.attachEvent) { window.attachEvent("onload", addLink); }

Just in case you forget about Arrays in c# - idiot!

Monday, July 23rd, 2007

http://msdn2.microsoft.com/en-us/library/aa288453(VS.71).aspx

Installing and using SVN on Windows

Monday, July 23rd, 2007

I am moving from CVS to SVN:

http://svn.spears.at/Â

Backing up databases SQL Server 2005

Sunday, July 22nd, 2007

Had a problem with a saving to a different location, this was useful:

http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=733113&SiteID=1