1樓:匿名使用者
trim(rs("newsname"))
改為if len(trim(rs("newsname")))>8 then
left(trim(rs("newsname")),8)&......&
else
trim(rs("newsname"))
end if
2樓:匿名使用者
left(字串,8) & "……"
3樓:匿名使用者
給你2個過程。
' ****************************************====
'從左邊載止位元組
'response.write leftstr("截止字串截止字串截止字串")
'leftstr("字串",5) 有點
'返回:截止字串…
' ****************************************====
function leftstr(str, strlen)
dim l, t, c, m_i
l = len(str)
t = 0
for m_i = 1 to l
c = abs(asc(mid(str, m_i, 1)))
if c > 255 then
t = t + 2
else
t = t + 1
end if
if t >= strlen then
leftstr = left(str, m_i) & "…"
exit for
else
leftstr = str
end if
next
end function
' ****************************************====
'rem leftstr("字串",5) 無點
'rem response.write leftstr2("截止字串截止字串截止字串")
'rem 返回:截止字串
'public
' ****************************************====
function leftstr2(str, strlen)
dim l, t, c, m_i
l = len(str)
t = 0
for m_i = 1 to l
c = abs(asc(mid(str, m_i, 1)))
if c > 255 then
t = t + 2
else
t = t + 1
end if
if t >= strlen then
leftstr2 = left(str, m_i)
exit for
else
leftstr2 = str
end if
next
end function
4樓:匿名使用者
方式很多。
<% if len(rs("title"))>30 then %><%= left(rs("title"),30) %>...
<% else %>
<%= rs("title") %>
<% end if %>
寧志新聞釋出系統提供
asp 中怎麼控制字數顯示?
5樓:寂寞遊神
用left就好了
例:<%=left(rs("content"),200)%>
6樓:類鹹歧文君
因為你把讀取出來的資料給限制了。。。如果你想全部都顯示出來,你把
<%=left(rst("summary"),200)%>改為
<%=rst("summary")%>就可以了。
7樓:匿名使用者
formatnumber 函式
例:mysecant = 1.314526622
formatnumberdemo = formatnumber(mysecant,4) ' 把 mysecant 格式化為帶四位小數點的數。
8樓:操曾母志
<%=left(rs("subject"),15)%>...
哦你只是想多出來的才加啊
那就用這個函式
function
lenstr(thestr,length)iflen(thestr)>length
then
tmpstr=left(thestr,15)tmpstr=tmpstr&"..."
lenstr=tmpstr
else
lenstr=thestr
endif
endfunction
<%=lenstr(rs("subject"),15)%>
9樓:針樂務閒靜
<%function
gottopic(str,strlen)
diml,t,c,
il=len(str)
t=0for
i=1to
lc=abs(asc(mid(str,i,1)))ifc>255
then
t=t+2
else
t=t+1
endif
ift>=strlen
then
gottopic=left(str,i)&"..."
exit
forelse
gottopic=str&"
"end
ifnext
endfunction
%>">
<%=gottopic(rs("subject"),15)%>
**標題怎麼控制字數的多少
10樓:瑞_莫爾
" ><%= rs("title") %>
是限制的title的字數吧
用left函式
left(rs("title"),10) '10代表顯示左邊10個字
asp中如何限制文字顯示的字數啊?
11樓:
在頁面加入加這個函式:
''擷取定長字串,一個漢字兩個位元組
function cutstr(str,length)
on error resume next
dim strcontent,htmlstr:htmlstr=trim(str)
if isnull(htmlstr) or htmlstr = "" then
cutstr= "為空"
exit function
end if
dim j,y:y= 0
if length=0 then''長度為0時全部取出
cutstr=htmlstr
exit function
end if
htmlstr = replace(htmlstr, " ", " ")
htmlstr = replace(htmlstr, """, chr(34))
htmlstr = replace(htmlstr, "'", chr(39))
htmlstr = replace(htmlstr, "", chr(125))
htmlstr = replace(htmlstr, "$", chr(36))
htmlstr = replace(htmlstr, "…", "…")
htmlstr = replace(htmlstr, "『", "『")
htmlstr = replace(htmlstr, "』", "』")
htmlstr = replace(htmlstr, "「", "「")
htmlstr = replace(htmlstr, "」", "」")
htmlstr = replace(htmlstr, "×", "×")
htmlstr = replace(htmlstr, "√", "√")
htmlstr = replace(htmlstr, ">", ">")
htmlstr = replace(htmlstr, "<", "<")
for j= 1 to len(htmlstr)
if asc(mid(htmlstr,j,1)) < 0 or asc(mid(htmlstr,j, 1)) > 255 then
y = y + 2
else
y = y + 1
end if
if y >= length then
htmlstr= left(trim(htmlstr),j)&"..."
exit for
end if
next
strcontent=htmlstr
strcontent = replace(strcontent, chr(34), """)
strcontent = replace(strcontent, chr(39), "'")
strcontent = replace(strcontent, chr(36), "$")
strcontent = replace(strcontent, chr(123), "")
strcontent = replace(strcontent, ">", ">")
strcontent = replace(strcontent, "<", "<")
cutstr=replace(strcontent,chr(10),"")
end function
引用方法是:<% =cutstr(mzwords,100)%>
這個函式可以對英文與中文字元正確識別並擷取。只要left()無法正常中文和英文字數。
12樓:田響建站
<% =left(mzwords,100) %>
php標題限制字數是多少?
怎麼控制asp的標題的顯示呼叫字數?
13樓:求助0005在路上
★"news_show.asp?id=<%=rs_news("id")%>"<%else%>"<%=rs_news("ex_url")%>" <%end if%> ex_title"),30) %>"><%=left (rs_news("ex_title"),20) %>
asp網頁中如何控制新聞標題的字數
可以自己定義一個函式,其中str是需要限制長度的字串,slength是限制的長度,addstr是若超過則在限制後加在後面的字串,通常為 參考如下 function cutstr str,slength,addstr dim tostr if str slength then tostr str en...
怎麼在ASP檔案中呼叫另網頁的原始碼顯示
直接加上,就可以引用了。一個js方法中怎麼呼叫另一個js檔案 js檔案中呼叫其它js函式的方法 1 例如有這樣一個html,裡面有一個按鈕,當按下時呼叫b.js檔案中的方法b 而b 中又要呼叫a.js檔案中的方法a 那我們應該怎麼做呢?首先,在html中引入b.js,並在之後加入引用語句。必須注意,...
如何實現css限制字數,超出部份顯示點點點滑鼠滑過顯示全部
差不多就這樣,你在調一調,主要就是text overflow ellipsis overflow hidden white space nowrap 這三個屬性!試試看試試看試試看試試看試試看試試看試試看試試看試試看試試看試試看 語法 text overflow clip ellipsis 引數 c...