asp.net从数据库读出HTML代码的前台显示问题。
前台显示的代码是:
<td height="28" colspan="2"><%=tb6.Rows[0]["Content"].ToString().Trim()%></td>
其中:
<%=tb6.Rows[0]["Content"].ToString().Trim()%>是为:<IMG height=54 src="/tysw/images/nav_club_off.gif" width=83 border=0>
前台显示结果:<IMG height=54 src="/tysw/images/nav_club_off.gif" width=83 border=0>
我要是前台显示改成<td height="28" colspan="2">
<IMG height=54 src="/tysw/images/nav_club_off.gif" width=83 border=0></td>
显示就正确了,为什么?应该怎么改