数据库中存的有这样的内容:
士大夫似的<BR>
<TABLE width="100%" boder="0">
<TBODY>
<TR>
<TD>
<OBJECT codeBase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0 height=340 width=500 align=left classid=clsid:D27CDB6E-AE6D-11cf-96B8-444553540000><PARAM NAME="_cx" VALUE="13229"><PARAM NAME="_cy" VALUE="8996"><PARAM NAME="FlashVars" VALUE=""><PARAM NAME="Movie" VALUE="http://172.28.1.44/upfiles/exam/41/声音/11.mp3"><PARAM NAME="Src" VALUE="http://172.28.1.44/upfiles/exam/41/声音/11.mp3"><PARAM NAME="WMode" VALUE="Window"><PARAM NAME="Play" VALUE="-1"><PARAM NAME="Loop" VALUE="-1"><PARAM NAME="Quality" VALUE="High"><PARAM NAME="SAlign" VALUE=""><PARAM NAME="Menu" VALUE="-1"><PARAM NAME="Base" VALUE=""><PARAM NAME="AllowScriptAccess" VALUE="always"><PARAM NAME="Scale" VALUE="ShowAll"><PARAM NAME="DeviceFont" VALUE="0"><PARAM NAME="EmbedMovie" VALUE="0"><PARAM NAME="BGColor" VALUE=""><PARAM NAME="SWRemote" VALUE=""><PARAM NAME="MovieData" VALUE=""><PARAM NAME="SeamlessTabbing" VALUE="1">
<embed src="http://172.28.1.44/upfiles/exam/41/声音/11.mp3" quality=high pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="500" height="340" align="left"></embed></OBJECT></TD></TR></TBODY></TABLE>我在显示的使用用label
但是显示不了,进度条很慢很慢的移动

解决方案 »

  1.   

    web:
    <form id="Form1" method="post" runat="server">
    <table border="0" cellpadding="0" cellspacing="1" width="760" align="center">
    <tr>
    <td align="center"><asp:Label id="zltitle" runat="server"></asp:Label></td>
    </tr>
    <tr>
    <td align="center"><asp:Label id="zlcontent" runat="server"></asp:Label></td>
    </tr>
    </table>
    </form>
    cs:
    private void Page_Load(object sender, System.EventArgs e)
    {
    if(!Page.IsPostBack)
    {

     DataSet Ds=ex.getxxnrinfo(this.Request.QueryString["kcid"],this.Request.QueryString["nam"]);
     zltitle.Text=Ds.Tables["My"].Rows[0]["nrtitle"].ToString();
                                 zlcontent.Text=Ds.Tables["My"].Rows[0]["nr"].ToString();
    // Response.Write(Ds.Tables["My"].Rows[0]["nr"]);
    }
    }
      

  2.   

    http://dotnet.aspx.cc/孟子E章的文章系统,里面有个现实进度条的,可以去参考一下啊!
      

  3.   

    label中不能识别<>中的字符
      

  4.   

    我用Response.Write(Ds.Tables["My"].Rows[0]["nr"]);
    也不行啊
      

  5.   

    转换一下:
    <用&lt;
    >用&gt;
      

  6.   

    如<tr>转换为:
    &lt;tr&gt;
      

  7.   

    但是不会啊,我用Write应该不存在这个问题,也不行啊
      

  8.   

    太大的文件就要考虑到使用WinSockit了。
      

  9.   

    这种问题的发生可能很多
    1.你的src或资源的引用不能使用
    2.有些特殊字符建议用“&#字符asc码;”来实现
    3.服务器配置问题
    4.脚本编写错误,写错或少些了元素符号
    5.等等
      

  10.   

    存进数据库时:
    Server.HtmlEncode();
    取出显示时:
    Server.HtmlDecode();
      

  11.   

    谢谢大家我知道了,flash 不能播放mp3,换个flash文件就好了