'完整代码是这样的!<%
msg="你注册用户名已经存在!"
%>
<html>
<body onLoad="loadf()">
</body>
</html>
<script language="javascript">
function loadf()
{
alert("<%=msg%>");
if("<%=msg%>"=="你注册用户名已经存在!")
{
window.location=('register.htm');
}
else
{
window.location=('index.htm');
}
break;
}
</script>