各位高手:
    我的前台页面从 textarea 中输入内容,提交到后台插入到数据库,这都很正常。    但在从数据库提取内容显示的时候,我已经把内容trim() 和格式化输出了,但在 textarea 中显示的内容就在中中间间的,4面的边框都不靠,怎么样把他靠在第一排最左显示呀?<%
   String tmp=rs.getString("xxx").trim();   tmp = tmp.replaceALL(tmp,"&amp;","&");
   tmp = tmp.replaceALL(tmp,"&lt;", "<");
   tmp = tmp.replaceALL(tmp,"&gt;",">");
   tmp = tmp.replaceALL(tmp,"\n", "\r\n");
   tmp = tmp.replaceALL(tmp,"<br>\n", "\n");
   tmp = tmp.replaceALL(tmp,"&nbsp;&nbsp;","  ");
   tmp = tmp.replaceALL(tmp,"\n&nbsp;&nbsp;", "\r\n");
   tmp = tmp.replaceALL(tmp,"<br>\n&nbsp;&nbsp;","\n");
   tmp = tmp.replaceALL(tmp,"&nbsp;&nbsp;&nbsp;&nbsp;","\t");
%>
 <textarea name="xxx" ><%=tmp%></textarea>这个时候显示的内容就在 textarea 中间,很难看,求高手解决。