28,409
社区成员




<%=rs("内容")%>
控制内容字段输出是每行显示10个字,超过10个自动换行style="width:100px;overflow: hidden; l" 或 TD DIV 的 width
<%
str="啊打打双打的阿飞的动感巅峰思维242assdfsfsdfsfsfsfsfdgdfhfgjhfgjghjghjghjghjgjghjghjghjghjgj海关监管和加工环节个人特容易让用户放号风格"
if len(str) mod 10 =0 then
x=int(len(str)/10)
else
x=int(len(str)/10)+1
end if
for i=1 to x
response.write mid(str,(i-1)*10,10) & "<br>"
next
%>
<%
str="啊打打双打的阿飞的动感巅峰思维242assdfsfsdfsfsfsfsfdgdfhfgjhfgjghjghjghjghjgjghjghjghjghjgj海关监管和加工环节个人特容易让用户放号风格"
if len(str) mod 10 =0 then
x=int(len(str)/10)
else
x=int(len(str)/10)+1
end if
for i=1 to x
j=i-1
response.write mid(str,j*10,10) & "<br>"
next
%>