default.html/asp
<html>
<script language="vbscript">
Sub Redirect_OnClick()
window.navigate("test.html")
End Sub
</script>
<body>
<input type=button id=Redirect value="Redirect">
</body>
</html>
test.html
<html>
<body>
Redirected!
</body>
</html>