Answers for "asp net css how to change text alignment of gridview column"

CSS
0

asp net css how to change text alignment of gridview column

protected void GridView1_DataBound(object sender, EventArgs e)
    {
        GridView1.Columns[1].ItemStyle.HorizontalAlign = HorizontalAlign.Right;
    }
Posted by: Guest on March-27-2020

Browse Popular Code Answers by Language