如题

解决方案 »

  1.   

    http://topic.csdn.net/u/20071227/15/d2440cff-a327-49f1-abba-86c7d360f08a.html
      

  2.   

    GridView1.HeaderRow.Visible = false;
      

  3.   

    <style>
      .hidden{display:none;}        
    </style>
    每一列都加上
    <headerstyle cssclass="hidden" />
      

  4.   

    把GridView的属性ShowHeader设置成false就可以了
    在代码里面可以用例如:
    GridView1.ShowHeader = false 也可以使其不显示
      

  5.   

    th
    {
    display:none;  
    }GridView 在页面源代码中显示为table ,Header表示为th, 利用css样式即可
      

  6.   

    GridView1.HeaderRow.Visible = false;
      

  7.   

    Visible = false!!!!!!!!!