欢迎光临
我们一直在努力

根据传入的recordset对象实例,按表格输出内容子过程-ASP教程,数据库相关

建站超值云服务器,限时71元/月

function iif(cond,expr1,expr2)
 if cond then
  iif = expr1
 else
  iif = expr2
 end if
end function

sub outinfo(rst)

 allcount=rst.recordcount-1

 response.write “<table id=tablemx><form method=post action=manage.asp>”
    
  response.write “<tr><td>all<input type=checkbox name=allselect></td>”
  
  for k=0 to rst.fields.count-1

   response.write “<td>”&rst(k).name&”</td>”

  next

  response.write “</tr>”
 
 for i=0 to allcount

  response.write “<tr><td>”&i&”<input type=checkbox name=su_no value=”&rst(“su_no”)&”></td>”

  for k=0 to rst.fields.count-1

   response.write “<td>”&rst(k).value&”</td>”

  next

  response.write “</tr>”&vbcrlf

  rst.movenext

 next

 response.write “</table>total records [“&allcount+1&”]</form>”

end sub

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 根据传入的recordset对象实例,按表格输出内容子过程-ASP教程,数据库相关
分享到: 更多 (0)