
But I do want this web page - the home page of bing. Refreshing didn't help either!
Just a simple blog which will hopefully help someone new to programming in html, Javascript and Eclipse
<html>
<head>
<script LANGUAGE="JavaScript">
<!--
// Confirm user wants to cancel the changes
function confirmCancel()
{
var cancelChanges=confirm("Are you sure you wish to cancel your changes?");
if (cancelChanges)
return true ;
else
return false ;
}
// -->
</script>
</head>
<body>
<form name="form1" method="post" action="">
<input TYPE="SUBMIT" name="sub_cancel" value="Cancel" onClick="return confirmCancel();">
</form>
</body>
</html>
dim obj
for each obj in Request.ServerVariables
response.write "Object Name: " & obj & "<BR>"
& "Object Value: " & Request.ServerVariables(obj) &
"<BR><BR>"
next
%>