Posted on: 1/23/2014 11:08:06 PM | Views : 633

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 &#x25b2; &#x25bc;" SortExpression= "LastName" HeaderStyle-ForeColor="White"> ...

Go to the complete details ...