|
主题: 哈哈!我又来了.又有问题请教了.
|
sghwj
职务:普通成员
等级:1
金币:0.0
发贴:98
|
#12004/1/10 17:37:01
大家好!小弟最近在改网页的时候有一段编码没有改好,只好请大家帮帮忙了. <TD bgcolor="#FFFFFF"><%=(rsnlist.Fields.Item("n_content").value)%> </td> 我想使"n_content"中的内容只显示几十个字.我这样改的: <td> <%if Len ("n_content")>90 then n_content=left("n_content",90) response.write "n_content" response.write "……" else response.write "n_content" end if %> </TD> 但是不对.应该怎么改才对?
|
sghwj
职务:普通成员
等级:1
金币:0.0
发贴:98
|
#22004/1/10 18:01:57
我改成这样子了: <TD bgcolor="#FFFFFF"> <% if len(rsnlist.Fields.Item("n_content").value)>90 then response.write left(rsnlist.Fields.Item("n_content").value,90) response.write "……" else response.write rsnlist.Fields.Item("n_content").value end if %></TD> 运行只有......,没有"n-content"中的内容
|
sghwj
职务:普通成员
等级:1
金币:0.0
发贴:98
|
#32004/1/10 18:29:06
改成这样子了: <% m = rsnlist.Fields.Item("n_content").value if len(m) > 90 then s = left(m , 89) & "……" Else s = m end if %> 还是不显示n_content中的内容只有......
|
缺缺
职务:管理员
等级:8
金币:41.0
发贴:9620
|
#42004/1/10 18:54:06
你先看看rsnlist.Fields.Item("n_content").value输出是什么?
另外,第一个,变量不应该加引号底~
|
sghwj
职务:普通成员
等级:1
金币:0.0
发贴:98
|
#52004/1/14 13:24:47
alilinhands 谢了,我已经搞定了.
|