从前有个小法师无翼鸟:update.asp?d_no

来源:百度文库 编辑:高考问答 时间:2024/07/07 11:40:51
<a href="Update.asp?d_no=<%=rs("d_no")%>">修改</a>

<%
strSQL = "select * from t_student order by d_no"
Set rs = conn.Execute(strSQL)
%>

这两句话是什么意思?
谢谢!!1

<a href="Update.asp?d_no=<%=rs("d_no")%>">修改</a>
传送d_no到Update.asp页面

strSQL = "select * from t_student order by d_no"
设置数据查询的条件,按照d_no排序

Set rs = conn.Execute(strSQL)
执行查询,并有返回值于RS