老大,把
<TR bgColor="#3300ff">
<TD colSpan="3" style="HEIGHT: 44px"><P style="FONT-SIZE: 9pt; COLOR: white">&nbsp;本站为会员提供免费下载空间,希望能够如实注册,本站将严格实施“Kaersoft-卡尔软件园会员登记条款”。</P>
</TD>
</TR>
中的<p></p>去掉,用font就行了

解决方案 »

  1.   

    我注册看过了:用户名:www  口令:www大家也看看吧!
      

  2.   

    主要是下边这段的原因:    With Abbrevia 3 you can add industry-standard PKZIP, Microsoft CAB, TAR and gzip compatible data compression capabilities to your own programs. Whether you work with Delphi, C++Builder, Kylix or other tools, Abbrevia 3 has the VCL, CLX, and COM components you need for full-featured data compression power. The fact is, for both desktop applications and web-based projects, Abbrevia 3 has it all. 
      

  3.   

    仔细想了一下,应该是这样的:你在提交时用的是:
    retVal=retVal.Replace(" ","&nbsp;"); 
    而不是:
    retVal=retVal.Replace("  ","&nbsp;&nbsp;"); 造成了提交的空格全部变成&nbsp;显示时这样转变一下就好了:
    retVal=retVal.Replace("&nbsp;"," "); 
    retVal=retVal.Replace("  ","&nbsp;&nbsp;");以后这样做:retVal=retVal.Replace("  ","&nbsp;&nbsp;");