Microsoft JET Database Engine (0x80040E07)
edit_student.asp<a href="modify_student.asp?student_id=<%=rs("student_id")%>">修改</a>
modify_student.asp
<%
dim sql,rs,student_id
student_id=request.QueryString("student_id")
sql="select * from student where student_id="&student_id&""
set rs=conn.execute(sql)
%>
Microsoft JET Database Engine (0x80040E07)
标准表达式中数据类型不匹配。congedit_student.asp转到modify_student.asp的时候出现的错误,我设置的student_id是文本型的.谢谢,不知道什么地方出错了呢?