| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 619 人关注过本帖
标题:关于asp调用文字超出使用...代替
只看楼主 加入收藏
hn3326
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2010-5-12
结帖率:0
收藏
已结贴  问题点数:20 回复次数:3 
关于asp调用文字超出使用...代替
代码如下
<a href="ShowDetail.asp?type=Article&id=<%=rs("id")%>" target="_blank"><%if rs("titlecolor")<>"" then%><font style="color:<%=rs("titlecolor")%>;"><%=Left(rs("title"),15)%></font><%else response.Write(mid(rs("title"),1,25))
        response.write ("...") end if%></a><span>[<%=rs("posttime")%>]</span></li>
        <%
            rs.movenext
            next
        end if
        %>

我使用
><%else response.Write(mid(rs("title"),1,25))
        response.write ("...") end if%>
之后发现每行都有... 了 怎么让超出标题27 后剩下的表示...
搜索更多相关主题的帖子: asp 文字 代替 
2010-05-12 00:33
hn3326
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2010-5-12
收藏
得分:0 
比如  标题为
从“渴望出名”到为社会奉献:共同创造调查揭示市场对亚洲青年的误读
20世纪最成功的100个广告战役

表示为
从“渴望出名”到为社会奉献:共同创造调查揭示市场对...
20世纪最成功的100个广告战役

不需要全部表示为
从“渴望出名”到为社会奉献:共同创造调查揭示市场对...
20世纪最成功的100个广告战役...
2010-05-12 01:34
hams
Rank: 12Rank: 12Rank: 12
等 级:贵宾
威 望:18
帖 子:912
专家分:3670
注 册:2008-7-30
收藏
得分:10 


<a href="ShowDetail.asp?type=Article&id=<%=rs("id")%>" target="_blank">
<%if rs("titlecolor")<>"" then%>
     <font style="color:<%=rs("titlecolor")%>;"><%=Left(rs("title"),15)%></font>
<%else
     response.Write(mid(rs("title"),1,25))
     if len(rs("title"))>25 then response.write ("...")
end if%></a><span>[<%=rs("posttime")%>]</span></li>
        <%
            rs.movenext
            next
        end if
        %>

俺不高手,俺也是来学习的。
俺的意见不一定就对,当你不认同时请点忽视按钮。
当走到十字路口不知该如何走时,可在论坛问下路,但你若希望别人能一路把你送到目的地,显然是不现实的,因为别人也有自己要走的路。
2010-05-12 08:52
gupiao175
Rank: 16Rank: 16Rank: 16Rank: 16
等 级:版主
威 望:40
帖 子:1787
专家分:7527
注 册:2007-6-27
收藏
得分:10 
以下是引用hams在2010-5-12 08:52:03的发言:



<%=rs("id")%>" target="_blank">
<%if rs("titlecolor")<>"" then%>
     <%=rs("titlecolor")%>;"><%=Left(rs("title"),15)%>
<%else
     response.Write(mid(rs("title"),1,25))
     if len(rs("title"))>25 then response.write ("...")
end if%>[<%=rs("posttime")%>]
        <%
            rs.movenext
            next
        end if
        %>
正解,核心用到了len进行判断其长度,如果超过长度就截取,不超过就直接显示!

Q:1428196631,百度:开发地 即可找到我,有事请留言!
2010-05-12 10:46
快速回复:关于asp调用文字超出使用...代替
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.036362 second(s), 10 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved