Skip to content

Instantly share code, notes, and snippets.

@mdinstuhl
mdinstuhl / scripts.js
Created September 29, 2013 21:24
When I was your age we didn't HAVE no fancy prototypes or jquerys!
function mnuRollover(mnuName){
mnuName.style.color = 'red';
mnuName.style.cursor = 'hand';
}
function mnuRollout(mnuName){
mnuName.style.color = 'darkred';
mnuName.style.cursor = 'default';
}
function mnuOnClick(pageName){
var sPageName;
@mdinstuhl
mdinstuhl / login.asp
Created September 29, 2013 21:07
This is ASP code from a login page that I wrote over 10 years ago. Can you spot the errors? How would you correct it to work by today's standards?
<%@ Language=VBScript %>
<!-- #INCLUDE FILE="dbaccess.asp" -->
<%
Dim sUsername