onclick事件
<form action="" method="post" name="form1">
<table>
<tr>
<%for i=0 to ubound(finduser)%>
<td>
<%if finduser(i)<>"" then%>
<input type="radio" name="find" value="<%=finduser(i)%>" onClick="locatoin='hello.asp'"><%=finduser(i)%>
<%end if%>
</td>
<%next%>
</tr>
</table>
</form>
怎么单击radio按钮并没跳转到hello.asp页面去,而是还停留在本页面。请问那里有错误,请修改并给出正确的答案