我想问一下,这句程序要怎么样写?
在页面的顶部,我定义了这个<%
function chklon(str,l)
if len(str)>l then
str=mid(str,1,l)&"……"
end if
chklon=str
end function
%>
然后我在下面这行要输出
<%
set rs=server.createobject("adodb.recordset")
sql="select title,content from introduce where id=1"
rs.open sql,conn,1,1
if not rs.eof and not rs.bof then
content=rs("content")
title=rs("title")
end if
rs.close
%>
<td><%=title%>br<%=content%></td>
我想控制<%=content%>是显示字数要怎么样写<%=content%>