ASPX如何应用后台代码替换前台字符串
<body>
<div class="report">
	    <p class="title">个人演出销售汇总报表</p>
	    <table class="UserTable" rules="all">
	        <thead>
	         <tr>
	            <td>演出名称</td>
	            <td>场馆名称</td>
	            <td>演出场次</td>
	            <td>场次时间</td>
	            <td>售票数量</td>
	            <td>总金额 </td>
	            </tr>
	        </thead>
	        <!--#UserP1Report#-->
	    </table >
	    </div>
</body>
在后台。cs文件中
namespace Web.Reports
{
    public partial class UserP1Name : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
          
        }
    }
}
如何替换  <!--#UserP1Report#-->然后实现动态 绑定数据,动态生成表格行的功能,求鞭策,求指导
------解决方案--------------------一个个人 也没哟啊