现在这个比较清晰。。还是数据库问题
<%Dim ImageID
ImageID=(Request.QueryString("TitleId"))
Set rs = Server.CreateObject("ADODB.Recordset")
sql="select * from nt_score"
rs.open sql,conn,1,3
if ImageID=rs.("ImageID") then
%>
<table width="980" border="0" cellspacing="0" cellpadding="0" align="center">
<%dim rsa,sqla
Set rsa = Server.CreateObject("ADODB.Recordset")
sqla="select * from nt_score where ImageID="&request("titleid")&""
rsa.open sqla,conn,1,3
%>
<form action="xjj?Action=jjl" method="post">
<tr>
<td width="316" height="35" align="right">
图片id:
<input name="id1" type="text" size="10" value="<%=rsa("ImageID")%>"/></td>
<td width="136">*图片id不可以改1</td>
<td width="150" height="35" align="right">
张数:<input name="zs2" type="text" size="10" value="<%=request("count")%>"/></td>
<td width="150">*图片张数不可以改1</td>
<td width="134" height="35" align="right">
得分:
<input name="score1" type="text" size="10" value="<%=rsa("score")%>"/></td>
<td width="394">*100分以上为精华图片,如果取消精华的话,填写100以下1</td>
</tr>
<tr>
<td height="28" colspan="6" align="center"><input type="submit" name="Submit" value="提交" /></td>
</tr></form></table>
<%rsa.movenext
rsa.close
%>
<%else%>
<table width="980" border="0" cellspacing="0" cellpadding="0" align="center">
<form action="tjj.asp" method="post">
<tr>
<td width="152" height="35" align="right">
图片id:<input name="id2" type="text" size="10" value="<%=request("titleID")%>"/></td>
<td width="150">*图片id不可以改2</td>
<td width="150" height="35" align="right">
张数:<input name="zs2" type="text" size="10" value="<%=request("count")%>"/></td>
<td width="150">*图片张数不可以改2</td>
<td width="160" height="35" align="right">
得分:<input name="score2" type="text" size="10" value=""/></td>
<td width="118">*100分以上为精华图片,如果取消精华的话,填写100以下2</td>
</tr>
<tr>
<td height="28" colspan="6" align="center"><input type="submit" name="Submit" value="提交" /></td>
</tr></form></table>
<%rs.movenext
end if
rs.close
%>
我想判断ImageID=rs.("ImageID")就显示第一个表格,当 rs.("ImageID")这条记录为空的时候显示第二个表,这个功能这么实现啊。。想了好多天了都没能解决。。在此求助。。谢谢了