|
Change
the Background Color
<%@ Language=VBScript %>
<html>
<head>
</head>
<body bgcolor="lightblue">
</body>
</html>
<script language="VBScript">
dim s
s = Inputbox("Enter the background. color for the "
& "document.","Background Color",
document.bgColor,3000,2000)
document.bgColor = s
</script>
|