`
java-mans
  • 浏览: 11434057 次
文章分类
社区版块
存档分类
最新评论

asp.net中gridview设置边框

 
阅读更多
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
    {
        if (e.Row.RowType == DataControlRowType.DataRow)
        {

            e.Row.Cells[0].Attributes.Add("style", "border:1px solid #333333 ");
            e.Row.Cells[1].Attributes.Add("style", "border:1px solid #333333 "); //#93c2f1;
            e.Row.Cells[2].Attributes.Add("style", "border:1px solid #333333");
            e.Row.Cells[3].Attributes.Add("style", "border:1px solid #333333");
            e.Row.Cells[4].Attributes.Add("style", "border:1px solid #333333");
            e.Row.Cells[5].Attributes.Add("style", "border:1px solid #333333");
            e.Row.Cells[6].Attributes.Add("style", "border:1px solid #333333");
            e.Row.Cells[7].Attributes.Add("style", "border:1px solid #333333");
            e.Row.Cells[8].Attributes.Add("style", "border:1px solid #333333");
            e.Row.Cells[9].Attributes.Add("style", "border:1px solid #333333");
            e.Row.Cells[10].Attributes.Add("style", "border:1px solid #333333");
            e.Row.Cells[11].Attributes.Add("style", "border:1px solid #333333");
            e.Row.Cells[12].Attributes.Add("style", "border:1px solid #333333");
            e.Row.Cells[13].Attributes.Add("style", "border:1px solid #333333");
            e.Row.Cells[14].Attributes.Add("style", "border:1px solid #333333");
            e.Row.Cells[15].Attributes.Add("style", "border:1px solid #333333");
        }
    }



gridview设置边框

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics