what my problem is i want to centralize the gridview items .now it seems in the left align mode.following is the gridview source code
<asp:GridView ID="GrdAttendenceList" runat="server" Width="800px"
onrowdatabound="GrdAttendenceList_RowDataBound" >
<EmptyDataTemplate>
<table style="width: 100%">
<tr>
<td align="center">
No Data to Display</td>
</tr>
</table>
</EmptyDataTemplate>
</asp:GridView>
How to make each item in the grid view center align.here iam binding values not manually given
Thanks in Advance