text align in gridview asp.net code example
Example: 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;
}