不提示错误才对.
你的update_about.asp文件里有一行代码你没看到啊!!!
if id="" or not isnumeric(id) then
Response.Write "<script>alert('参数错误!');history.go(-1);</script>"
Response.End()
end if
没有收到id值,或者id不是数字的时候就提示错误,
解决的办法如下.
在你的xiugai_about.asp文件的表单里就是在</form>代码前面加上下面这段代码
<input type="hidden" name="id" value="<%=rs("id")%>">
就可以了.