麻烦帮我看一下这代码错在那里?
<form id="form1" name="form1" method="post" action="123.asp?ss=sfqx"><input type="submit" name="Submit" value="提交" />
</form>
<!--#include file="Conn1.asp" -->
<%
If Request.QueryString("ss")="sfqx" Then
set rs1=server.CreateObject("adodb.recordset")
rs1.open "select * from JaAdmin where Userweb='公司注册'",conn1,1,3
if not rs1.eof then
do while not rs1.eof
rs1("qyclass")=3
rs1.movenext
loop
Response.Write "<script language=javascript>alert('修改成功!');window.document.location.href='123.asp';</script>"
else
end if
rs1.update
rs1.close
set rs1=nothing
end if
%>
能实现所有‘公司注册'的qyclass值得为3 但是~不能返回到123.asp