注册 登录
编程论坛 ASP技术论坛

现在这个比较清晰。。还是数据库问题

bodytrtd 发布于 2010-02-03 09:41, 352 次点击
<%
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")这条记录为空的时候显示第二个表,这个功能这么实现啊。。想了好多天了都没能解决。。在此求助。。谢谢了
2 回复
#2
aspic2010-02-03 10:36
rs.("ImageID")???????
rs("ImageID")???????
#3
aspic2010-02-03 10:37
ImageID=(Request.QueryString("TitleId"))
外面的括号是什么意思?
1