<PagerTemplate>
                            <table width="1000px">
                                <tr>
                                    <td align="left" width="30%">
                                        <asp:Label ID="LabCurrentPage" runat="server" Font-Size="Small">当前第<%# ((GridView)Container.NamingContainer).PageIndex + 1 %>页&nbsp;&nbsp;</asp:Label>
                                        <asp:Label ID="LabTotalPage" runat="server" Font-Size="Small">共<%# ((GridView)Container.NamingContainer).PageCount %>页数&nbsp;&nbsp;</asp:Label>
                                    </td>
                                    <td align="right" width="40%">
                                        <asp:LinkButton ID="LinkButtonFirstPage" runat="server" CommandArgument="first" CommandName="page"
                                            Enabled="<%# ((GridView)Container.Parent.Parent).PageIndex != 0 %>" Font-Size="Small">首页</asp:LinkButton>
                                        <asp:LinkButton ID="LinkButtonUpPage" runat="server" CommandArgument="prev" CommandName="page"
                                            Enabled="<%# ((GridView)Container.Parent.Parent).PageIndex != 0 %>" Font-Size="Small">上一页</asp:LinkButton>
                                        <asp:LinkButton ID="LinkButtonDownPage" runat="server" CommandArgument="next" CommandName="page"
                                            Enable="<%# ((GridView)Container.Parent.Parent).PageIndex != ((GridView)Container.Parent.Parent).PageCount - 1 %>"
                                            Font-Size="Small">下一页</asp:LinkButton>
                                        <asp:LinkButton ID="LinkButtonEndPage" runat="server" CommandArgument="end" CommandName="page"
                                            Enable="<%# ((GridView)Container.Parent.Parent).PageIndex != ((GridView)Container.Parent.Parent).PageCount - 1 %>"
                                            Font-Size="Small">尾页</asp:LinkButton>
                                    </td>
                                </tr>
                            </table>
                        </PagerTemplate>
尾页总是报错,其他几个没问题!!!请高手指点