显示的问题
<!--#include file="conn.asp"--><%
Function ChangeHTML2(sHTML)
Dim cHTML
cHTML=replace(sHTML,"<","<",1)
cHTML=replace(cHTML,">",">",1)
cHTML=replace(cHTML,"''","'",1)
cHTML=replace(cHTML,chr(34),"”",1)
ChangeHTML2=cHTML
End Function
%>
<%
set rs=server.createobject("adodb.recordset")
sql="select * from new where id=" &request.querystring("id")
rs.open sql,conn,1,1
%>
<% neirong=changeHTML2(rs("neirong"))%>
<div align="center">
<table cellpadding="0" cellspacing="0" width="546" height="236">
<!-- MSTableType="layout" -->
<tr>
<td valign="top" height="16">
<p align="center"><%=rs("id")%> </td>
</tr>
<tr>
<td valign="top" height="16">
<p align="right"><%=rs("id")%> </td>
</tr>
<tr>
<td valign="top" height="204" width="546">
<table style="table-layout:fixed" width="545">
<tr>
<td style="word-break:break-all"><%=rs("neirong")%> </td>
</tr>
</table>
</td>
</tr>
</table>
</div>
为什么neirong部分我在textbox那里可以有分段的,但这样写就没有分段 ,不解