I have a GridView that has a column called \[code\]Active\[/code\] which shows either a \[code\]1\[/code\] (for active) or a \[code\]-1\[/code\] for inactive.However as this is being implemented into a front end UI I do not want users to be presented with what seems to them as useless integers, however a \[code\]Active\[/code\] or \[code\]Not active\[/code\] to be presented in the GridView on \[code\]Page_Load\[/code\].The code would look something like -\[code\]protected void Page_Load(object sender, EventArgs e) { //code here to modify the column 'Active' in the GridView //GridView ID="GV1" if (row.Cells[1].Text == "1") { row.Cells[1].Text = "Active"; } if (row.Cells[1].Text == "-1") { row.Cells[1].Text = "Not Active"; } }\[/code\]And the column in the GridView is -\[code\]<asp:BoundField HeaderText="Active" DataField="Active" SortExpression="Active"></asp:BoundField>\[/code\]How can I do this as I do not want to edit the database in order for the UI to be more presentable?