Hello Folks,
I am using the following html for a gridview. The code behind is also provided below. Can someone please help me with Sorting this grid according to Name field. Paging works just fine !
<asp:GridView ID="grdUsers" runat="server" AutoGenerateColumns="False" AllowPaging="True"
EnableModelValidation="True" CellPadding="4" ForeColor="#333333"
GridLines="Both" EmptyDataText="No Users Found" AllowSorting="True"
ShowFooter="True" PageSize="15">
<PagerSettings Position="TopAndBottom" />
<RowStyle BackColor="#EFF3FB" />
<Columns>
<asp:TemplateField HeaderText="Name ▲ ▼" SortExpression= "LastName" HeaderStyle-ForeColor="White"> ...
Go to the complete details ...