摘要:
DataGrid列头固定并不需要非常麻烦,在我看来,只需要写一个样式即可。 .FixedHead { position:relative; top:expression(this.offsetParent.scrollTop); } .FixedDiv { height:100px; overflow-y:scroll; }然后在DataGrid的里引用此样式 阅读全文
摘要:
public void SetDataGridColor(System.Web.UI.WebControls.DataGrid dg,int Col) { //設置顯示已刪除記錄最後一列 //DataGrid dg = this.dginfoHeader; int cc=dg.Items.Count; //bool flg =true; //DataGrid中第一行... 阅读全文