怎么能让GridView的行高变小,和么能让从数据库里读出的的文字环绕图片
第一.怎么设置GridView的行高它显示到客户端时各个行高太高了第二.怎么能让从数据库里读出的的文本文字环绕图片
--------------------编程问答-------------------- 俺这样做不知道对不对(第一个),在绑定事件里
Protected Sub DataGridView1_ItemDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.DataGridItemEventArgs) Handles DataGridView1.ItemDataBound
Dim TempDeviceDescString As String = ""
If e.Item.ItemType = ListItemType.Header Or e.Item.ItemType = ListItemType.Item Or e.Item.ItemType = ListItemType.AlternatingItem Then
For i = 0 To DataGridView1.Columns.Count - 1
e.Item.Cells(i).Height = 20
Next
End If
end sub --------------------编程问答-------------------- 俺说错了,不用在数据绑定里
For i = 0 To DataGridView1.Rows.Count - 1
For j = 0 To DataGridView1.Columns.Count - 1
DataGridView1.Items(i).Cells(j).Height=20
Next
Next --------------------编程问答-------------------- 不行不变,还有其他的方法吗?大家帮帮忙呀 --------------------编程问答-------------------- 用样式吧 RowStyle 属性设置 具体查一下MSDN
可以在GridView里面加 HTML --------------------编程问答-------------------- CellPadding="0" CellSpacing ="0"
补充:.NET技术 , ASP.NET