用一个容器 placeholder就行了,,,给DataList分页有时就用placeholder动态添加链接按钮的
protected System.Web.UI.WebControls.PlaceHolder hplholder;
///////////
for(int i=1;i<=hplkct;i++)
{
hplholder.Controls.Add(new LiteralControl("??"));
HyperLink thelink=new HyperLink();
thelink.Text=i.ToString();
thelink.NavigateUrl=Request.CurrentExecutionFilePath+"?page="+i.ToString();
hplholder.Controls.Add(thelink);
if(thelink.Text==this.ctpg.Text)thelink.Enabled=false;
}
[[it] 本帖最后由 guming 于 2008-3-29 23:48 编辑 [/it]]