ASP.NET - 绑定数据后获取GridView宽度

时间:2012-02-17 17:03:12

标签: asp.net

我试图做一些相当简单的事情。我有一个div标签,其中显示了我的gridview。我想将div width属性设置为gridview的宽度属性+几个像素。我试图访问DataBound和Page_Prerender事件中的GridView.Width.Value属性,但它总是返回0:

protected void Page_Prerender(object sender, EventArgs e)
{
    string sWidth = gvUsers.Width.Value.ToString();
    divContactForm.Attributes.Add("style", "width: " + sWidth + " ;");
}

我在DataBound事件中尝试了相同的代码而没有运气。

如何在绑定数据后获取GridView的宽度?

1 个答案:

答案 0 :(得分:0)

给div一些填充。例如:

style="padding:5px 5px;"