我想读取数据库中的内容,由于内容太长用了 ... 代替,请问怎样才能读到想要的ID 我的代码是这样的:
<td><%title=rs("cd_int2")
i=70
if len(title)>i then
title=left(title,i)
response.write (title&"......")else response.write (title)end if%></td>
这样只能读到第一个
定义一个函数Function cutStr(str)i=70If len(str)>i then cutStr=left(str,i)&"..."Else cutStr=strEnd IfEnd Function用的时候cutStr(rs("cd_int2"))就行了
能不能指定cutStr(rs("cd_int2"))的某条内容?用ID 谢谢了
不明白,要睡了!明天再说。关机。