2
楼
<%
function cutstr(tempstr,tempwid)'定义一个函数,有两个参数tempstr是字符串,tempwid是数字
if len(tempstr)>tempwid then '如果传入的字符串长度大于指定大小
cutstr=left(tempstr,tempwid)&"..." '把原字符串取前指定位数加上...然后赋给cutstr
else'否则
cutstr=tempstr 'cutstr的值就是字符串
end if
end function%>
function cutstr(tempstr,tempwid)'定义一个函数,有两个参数tempstr是字符串,tempwid是数字
if len(tempstr)>tempwid then '如果传入的字符串长度大于指定大小
cutstr=left(tempstr,tempwid)&"..." '把原字符串取前指定位数加上...然后赋给cutstr
else'否则
cutstr=tempstr 'cutstr的值就是字符串
end if
end function%>
调用时候 <%=cutstr(abcdefg),6)%>
则为abcdef....
<%=cutstr(abcdefg),8)%> 则为abcdefg