Click here to Skip to main content
15,885,244 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
///////////////Here is the grid.I wanna Add Images Up and Down as per my Sorting


XML
<asp:GridView ID="grdItemSearch" CssClass="grdTabel" Width="100%"  AllowSorting="true"   AllowPaging="true"
                                               PageSize="10" runat="server" AutoGenerateColumns="False">
                                               <Columns>
                                                   <asp:TemplateField ItemStyle-HorizontalAlign="Left"   SortExpression="ItemCode" HeaderText="Item Code"
                                                       HeaderStyle-Width="20%" ItemStyle-Width="20%">
                                                       <ItemTemplate>
                                                           <asp:Label ID="lblItemCode" runat="server" Text='<%#DataBinder.Eval(Container.DataItem,"ItemCode")%>'></asp:Label>
                                                       </ItemTemplate>
                                                   </asp:TemplateField>
                                                   <asp:TemplateField HeaderStyle-Width="60%"   SortExpression="ItemName" ItemStyle-Width="40%"
                                                       HeaderText="Item Name">
                                                       <ItemTemplate>
                                                           <asp:Label ID="lblItemName" runat="server" Text='<%#DataBinder.Eval(Container.DataItem,"ItemName")%>'></asp:Label>
                                                       </ItemTemplate>
                                                   </asp:TemplateField>
                                                   <asp:TemplateField HeaderStyle-Width="20%" ItemStyle-Width="20%" HeaderText="Action">
                                                       <ItemTemplate>
                                                           <asp:LinkButton ID="lnkEdit" CommandName="Modify" CommandArgument='<%#DataBinder.Eval(Container.DataItem,"ItemCode")%>'
                                                               runat="server">Edit</asp:LinkButton>
                                                           &nbsp;<asp:LinkButton ID="lnkDel" CommandName="Del" CommandArgument='<%#DataBinder.Eval(Container.DataItem,"ItemCode")%>'
                                                               runat="server">Delete</asp:LinkButton>
                                                       </ItemTemplate>
                                                   </asp:TemplateField>
                                               </Columns>
                                           </asp:GridView>
Posted
Updated 8-Nov-12 4:30am
v2
Comments
Legor 8-Nov-12 10:30am    
Is there a question related to this? Because i cant see any.

1 solution

Check the below articles and try to implement the techniques.
They will help you for sure.
1. how to show the up and down arrows during sorting of column in gridview using asp.net[^].
2. A Look at the GridView's New Sorting Styles in ASP.NET 4.0[^].

Thanks...
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900