萬盛學電腦網

 萬盛學電腦網 >> 網絡編程 >> asp.net編程 >> ASP.NET Datagridview自動換行的小例子

ASP.NET Datagridview自動換行的小例子

這篇文章介紹了ASP.NET Datagridview自動換行的代碼,有需要的朋友可以參考一下,希望對你有所幫助   復制代碼 代碼如下:


protected void AxGridView1_RowDataBound(object sender, GridViewRowEventArgs e)
   {
       //設置所有列不允許換行
       //AxGridView1.Attributes.Add("style", "word-break:keep-all;word-wrap:false");
       //設置所有列自動換行
       AxGridView1.Attributes.Add("style", "word-break:break-all;word-wrap:break-word");
   }

copyright © 萬盛學電腦網 all rights reserved