2

グリッドビューでプロパティを使用AllowPaging="True"してページ 2 に移動すると、コードによって Web サイトのホームページに移動します。代わりに、コードが 2 ページ目にレコード リストを表示していません。どちらもエラーをスローしていないため、どこが間違っているのか判断できません。.aspx ページ コードは次のようになります。

<asp:GridView ID="GridView1" runat="server" AllowPaging="True" PageSize="10" CellSpacing="4" OnPageIndexChanging="GridView1_PageIndexChanging" AutoGenerateDeleteButton="True" AutoGenerateEditButton="True" CellPadding="4" DataKeyNames="DocumentsId" GridLines="None" OnRowEditing="GridView1_RowEditing" OnRowDeleting="GridView1_RowDeleting" OnRowUpdated="GridView1_RowUpdated" OnRowUpdating="GridView1_RowUpdating" ForeColor="#333333" OnRowCancelingEdit="GridView1_RowCancelingEdit" >
            <AlternatingRowStyle BackColor="White" />
            <EditRowStyle BackColor="#2461BF" />
            <FooterStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" />
            <HeaderStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" />
            <PagerStyle BackColor="#2461BF" ForeColor="White" HorizontalAlign="Center" />
            <RowStyle BackColor="#EFF3FB" />
            <SelectedRowStyle BackColor="#D1DDF1" Font-Bold="True" ForeColor="#333333" />
            <SortedAscendingCellStyle BackColor="#F5F7FB" />
            <SortedAscendingHeaderStyle BackColor="#6D95E1" />
            <SortedDescendingCellStyle BackColor="#E9EBEF" />
            <SortedDescendingHeaderStyle BackColor="#4870BE" />
        </asp:GridView>

.cs ファイル コードは次のとおりです。

protected void Page_Load(object sender, EventArgs e)
{
    BindGrid();
    MultiView1.SetActiveView(vHome);
    btnBacktoHome.Visible = false;
    lblStatus.Visible = false;       
}

public void BindGrid()
{
    SqlConnection con = new SqlConnection("Data Source=MEHDI-PC\\SQLEXPRESS; Initial Catalog=PIMS; Integrated Security=true;");
    {
        using (SqlCommand cmd = new SqlCommand())
        {
            String sql = "select [DocumentsID],[Ref],[Subject],[Src],[Dst],[Medium],[Date_Printed],[Date_Received],[Document_Type],[Action_Required],[Due_Date],[Actual_Date],[Content],[Tag],[Issue_No],[Attachment],[Notes],[Assigned_To],[Reply_Ref],[Priority],[Status],[Response],[Physical_File_No],[Physical_Rack_Location] from dbo.Documents";
            cmd.Connection = con;
            cmd.CommandText = sql;
            con.Open();
            DataSet ds = new DataSet();
            using (SqlDataAdapter adp = new SqlDataAdapter(cmd))
            {
                adp.Fill(ds);

            } GridView1.DataSource = ds.Tables[0]; 
            GridView1.DataBind();
        }

        if (con.State == ConnectionState.Open)
        {
            con.Close();
        }
    }
}

protected void GridView1_PageIndexChanging(object sender, GridViewPageEventArgs e)
{
    GridView1.PageIndex = e.NewPageIndex;
    BindGrid();
}

どんな助けでも大歓迎です。前もって感謝します。

4

2 に答える 2

1

ページングに必要なプロパティ:

PagerSettings-Visible="true"     
PagerSettings-Mode="NextPreviousFirstLast"     
PageSize="20"     
AllowPaging="true"
于 2014-08-02T17:37:29.380 に答える