asp.net

位置:IT落伍者 >> asp.net >> 浏览文章

ASP.NET Datagridview自动换行的小例子


发布日期:2018年12月13日
 
ASP.NET Datagridview自动换行的小例子
这篇文章介绍了ASPNET Datagridview自动换行的代码有需要的朋友可以参考一下希望对你有所帮助复制代码 代码如下:


protected void AxGridView_RowDataBound(object sender GridViewRowEventArgs e)
{
//设置所有列不允许换行
//AxGridViewAttributesAdd("style" "wordbreak:keepall;wordwrap:false");
//设置所有列自动换行
AxGridViewAttributesAdd("style" "wordbreak:breakall;wordwrap:breakword");
}

上一篇:ASP.NET缓存介绍

下一篇:ASP.NET中用js取CheckBoxList中值的方法实例