<head>
</head>
<body>
<a href="新建html.html" target="_self"><img src="图片名称.jpg" width="100px" height="100px"></a>
(再新建一个html,显示点击后的效果页面)
</body>
</html>
function login(){if (document.login.usename.value== "logon" &&document.login.password.value =="logon") {
location.href="main.html"
//document.login.usename 跟document.login.password 中的login 要换成你的表单名称, //usename、password 要换成你 字段的名称。
}else{
return false
}
}
用你的asp.net输入js,然后js再写出(write)html代码。比如你用asp.net动态脚本语句输出
“
<script>
document.write('<table>........</table>')
document.write()
</script>
”