I have class Person, having two properties First Name and Last Name, if I set array of person as Data Source to GridView how can I show both First Name and Last Name in one colu
Use tempate field and Eval method:
<%# Eval("FirstName") %> <%# Eval("LastName") %>