N,V,C,D are the variables in a bound column of my GridView.
When I display this table in my GridView, I want New,Verified,Cancelled,Deleted to be displayed instead.
My GridView calls a procedure in my database that runs the select Query. Do I need to change the query or add a GridView function? I do not want to change my database values per se.
How do I go about this?
This is my bound field as of now:
<asp:BoundField
DataField="Status"
HeaderText="Status"
SortExpression="Status" />