23/03/2011

Close Tab Using ESC

<html>
<head>
<script>
function checkForEsc(e)
{
 if(!e)
  e = window.event;
 var key = e.keyCode;
 if(key==27)
  doCancel();
}

function doCancel()
{
 window.parent.close();
}
</script>
</head>
<BODY onkeypress=checkForEsc(event);>
</body>
</html>

Read more...

Microsoft Visual Studio 2010 Service Pack 1 - 3/3/2011


Read more...