Changing buttons like Insert, Delete of a ListView is fine since they are just normal asp:buttons but how to go about changing the page buttons (i.e First and Last) if paging is enabled on a ListView?
They are of type:
<asp:DataPager ID="DataPager1" runat="server">
<Fields>
<asp:NextPreviousPagerField ButtonType="Button" ShowFirstPageButton="True"
ShowNextPageButton="False" ShowPreviousPageButton="False" />
<asp:NumericPagerField />
<asp:NextPreviousPagerField ButtonType="Button" ShowLastPageButton="True"
ShowNextPageButton="False" ShowPreviousPageButton="False" />
</Fields>
</asp:DataPager>
Just need to change ForeColor and BackColor attributes.