<%
if request("action")="chk" then
id="<无匹配数据>"
uid="<无匹配数据>"
jd="<无匹配数据>"
sj="<无匹配数据>"
uid_type="<无匹配数据>"
uid_type=request("uid_type")
set rs=server.createobject("adodb.recordset")
if uid_type<>"" then
sql="select * from uid where uid_type='"&uid_type&"'"
rs.open sql,conn,1,1
on error resume next
if rs.eof then
response.write("找不到数据")
else
do while not rs.eof
id=rs("id")
uid=rs("uid")
jd=rs("jd")
sj=rs("sj")
uid_type=rs("uid_type")
%>
受理编号: | <%=uid%> |
申请人: | <%=uid_type%> |
办理事项: | <%=sj%> |
进度情况: | <%=jd%> |
序列: | <%=id%> |
<%
if request("action")="chk" then
id="<无匹配数据>"
uid="<无匹配数据>"
jd="<无匹配数据>"
sj="<无匹配数据>"
uid_type="<无匹配数据>"
uid_type=request("uid_type")
set rs=server.createobject("adodb.recordset")
if uid_type<>"" then
sql="select * from uid where uid_type='"&uid_type&"'"
rs.open sql,conn,1,1
on error resume next
%>
受理编号: | <%=uid%> |
申请人: | <%=uid_type%> |
办理事项: | <%=sj%> |
进度情况: | <%=jd%> |
序列: | <%=id%> |
sql语句写含有: distinct uid_type 试试看
加个
do while
....
loop
循环就可以啊!