截取字符的问题!
现在一个问题想得到解决:
表中存的是: <P> <FONT size=2> <FONT face= "Wide	Latin "> <SPAN lang=EN-US style= "mso-font-kerning: 0pt "> Web 开发.......
问题:我用 <%=Left(rs( "content "),100)%> ,他会不会把 <P> <FONT size=2> <FONT face= "Wide	Latin "> 算在100字符内,但是我在测试当中好像是把这些算100字符内了怎么解决?在线等
------解决方案--------------------用CSS就可以解决这个问题。
实际上都是输入来的,用CSS来隐藏多余的部分。
------解决方案-------------------- <%=Left(rs( "content "),100)%>
改为:
<%=Left(Server.HtmlEncode(rs( "content ")),100)%>
试试