(i)If you are using databound fields in gridview then you can use it's properties like following example
Ex:
<asp:BoundField HeaderText="Header-Text" DataField="Field1" HeaderStyle-Width="100px" HeaderStyle-Height="50px" ItemStyle-Height="50px" ItemStyle-Width="100px" />
(ii)if you are using Template fields then ,you have do like-
Ex:
<HeaderStyle Width="100px" Height="50px" />
<ItemStyle Width="100px" Height="50px" />
n.b: you use can various other style properties also.
(iii) PagerSetting can be used to customize the style of pager along with pagerStyle
pager setting provides facilities like
1.you can show page navigations as images
2.can place pager row on both above and below the gridview etc
Ex:
<PagerSettings FirstPageImageUrl="FirstPage.png" LastPageImageUrl="LastPage.png" PreviousPageImageUrl="PrevPage.png" NextPageImageUrl="NextPage.png" Visible="true" Mode="NextPreviousFirstLast" Position="TopAndBottom" />
I hope this will help you.
If you got the answer then please mark this as answer
Thanks
Vanamalisowjanya, if this helps please login to Mark As Answer. | Alert Moderator