忘了加上:
<asp:DataGrid id="dg1" style="Z-INDEX: 101; LEFT: 10px; POSITION: absolute; TOP: 11px" runat="server" Width="607px" Height="318px" CellPadding="2" AllowCustomPaging="True" AllowPaging="True" OnPageIndexChanged="ChangePage" BorderColor="Black" BorderWidth="1px" Font-Names="Verdana" Font-Size="8pt"></asp:DataGrid>public void ChangePage(Object sender,DataGridPageChangedEventArgs e) 
{
dg1.CurrentPageIndex = e.NewPageIndex;
BindGrid();
}