<asp:TemplateColumn> <FooterTemplate> <asp:HyperLink ID="test" Runat="server">连接</asp:HyperLink> </FooterTemplate>
</asp:TemplateColumn>
用脚注了

解决方案 »

  1.   

    In .aspx
    <asp:DataGrid id="DataGrid1" runat="server" 
    AllowPaging="True" PageSize="4" 
    AllowSorting="True">
    </asp:DataGrid>In code behind
    Protected SQLStmt As String = "Select * from Products"
    Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load'Put user code to initialize the page here
         If Not Page.IsPostBack Then
             binddata()
         End If
    End SubPrivate Sub DataGrid1_PageIndexChanged(ByVal source As Object, ByVal e As System.Web.UI.WebControls.DataGridPageChangedEventArgs) Handles DataGrid1.PageIndexChanged
        DataGrid1.CurrentPageIndex = e.NewPageIndex
        binddata()
    End SubSub binddata()
         Dim myconnection As SqlConnection
         Dim myda As SqlDataAdapter
         Dim ds As DataSet
         Dim strConn As String
         strConn = "Server=localhost;uid=sa;password=;database=northwind;"
         myconnection = New SqlConnection(strConn)
         myda = New SqlDataAdapter(SQLStmt, myconnection)
         ds = New DataSet()
         myda.Fill(ds, "AllTables")
         DataGrid1.DataSource = ds
         DataGrid1.DataBind()
    End SubPrivate Sub DataGrid1_SortCommand(ByVal source As Object, ByVal e As System.Web.UI.WebControls.DataGridSortCommandEventArgs) Handles DataGrid1.SortCommand
         SQLStmt = SQLStmt & " ORDER BY " & e.SortExpression
         binddata()
    End Sub
      

  2.   

    <%@ Import Namespace="System.Data" %>
     
     <html>
     <script language="C#" runat="server">
     
        ICollection CreateDataSource() 
        {
           DataTable dt = new DataTable();
           DataRow dr;
     
           dt.Columns.Add(new DataColumn("IntegerValue", typeof(Int32)));
           dt.Columns.Add(new DataColumn("StringValue", typeof(string)));
           dt.Columns.Add(new DataColumn("DateTimeValue", typeof(string)));
           dt.Columns.Add(new DataColumn("BoolValue", typeof(bool)));
     
           for (int i = 0; i < 100; i++) 
           {
              dr = dt.NewRow();
     
              dr[0] = i;
              dr[1] = "Item " + i.ToString();
              dr[2] = DateTime.Now.ToShortDateString();
              dr[3] = (i % 2 != 0) ? true : false;
     
              dt.Rows.Add(dr);
           }
     
           DataView dv = new DataView(dt);
           return dv;
        }
     
        void Page_Load(Object sender, EventArgs e) 
        {
           if (chk1.Checked)
              MyDataGrid.PagerStyle.Mode = PagerMode.NumericPages;
           else 
              MyDataGrid.PagerStyle.Mode = PagerMode.NextPrev;
     
           BindGrid();
        }
     
        void MyDataGrid_Page(Object sender, DataGridPageChangedEventArgs e) 
        {
           MyDataGrid.CurrentPageIndex = e.NewPageIndex;
           BindGrid();
        }
     
        void BindGrid() 
        {
           MyDataGrid.DataSource = CreateDataSource();
           MyDataGrid.DataBind();
           ShowStats();
        }
     
        void ShowStats() 
        {
           lblEnabled.Text = "AllowPaging is " + MyDataGrid.AllowPaging;
           lblCurrentIndex.Text = "CurrentPageIndex is " + MyDataGrid.CurrentPageIndex;
           lblPageCount.Text = "PageCount is " + MyDataGrid.PageCount;
           lblPageSize.Text = "PageSize is " + MyDataGrid.PageSize;
        }
     
     
     </script>
     
     <body>
     
        <h3>DataGrid Paging Example</h3>
     
        <form runat=server>
     
           <asp:DataGrid id="MyDataGrid" runat="server"
                AllowPaging="True"
                PageSize="10"
                OnPageIndexChanged="MyDataGrid_Page"
                BorderColor="black"
                BorderWidth="1"
                GridLines="Both"
                CellPadding="3"
                CellSpacing="0"
                Font-Name="Verdana"
                Font-Size="8pt">            <PagerStyle Mode="NumericPages"
                            HorizontalAlign="Right">
                </PagerStyle>
                <HeaderStyle BackColor="#aaaadd">
                </HeaderStyle>            <AlternatingItemStyle BackColor="#eeeeee">
                </AlternatingItemStyle>       </asp:DataGrid>
     
           <p>
     
           <asp:Checkbox id="chk1" runat="server"
                Text="Show numeric page navigation buttons"
                Font-Name="Verdana"
                Font-Size="8pt"
                AutoPostBack="true"/>
     
           <p>
     
           <table bgcolor="#eeeeee" cellpadding="6">
              <tr>
                 <td nowrap>
                    
     
                       <asp:Label id="lblEnabled" 
                            runat="server"/><br>
                       <asp:Label id="lblCurrentIndex" 
                            runat="server"/><br>
                       <asp:Label id="lblPageCount" 
                            runat="server"/><br>
                       <asp:Label id="lblPageSize" 
                            runat="server"/><br>
     
                    
                 </td>
              </tr>
           </table>
     
        </form>
     
     </body>
     </html>