求助 读取数据库
我想读取数据库中的内容,由于内容太长用了 ... 代替,请问怎样才能读到想要的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>
这样只能读到第一个
我想读取数据库中的内容,由于内容太长用了 ... 代替,请问怎样才能读到想要的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=70
If len(str)>i then
cutStr=left(str,i)&"..."
Else
cutStr=str
End If
End Function
用的时候
cutStr(rs("cd_int2"))
就行了
能不能指定cutStr(rs("cd_int2"))的某条内容?用ID 谢谢了