2

部分的なポストバックを実行しようとしているときに、更新パネルが完全なポストバックを実行します。ハイパーリンクの前のページと次のページをクリックしたときに、ページ全体を更新せずにリピーターを更新できるようにしたいだけです。

   protected void Page_Load(object sender, EventArgs e)
{
    PagedDataSource objpd = new PagedDataSource();

    string connStr = ConfigurationManager.ConnectionStrings["yafnet"].ConnectionString;
    SqlConnection mySQLconnection = new SqlConnection(connStr);
    if (mySQLconnection.State == ConnectionState.Closed)
    {
        mySQLconnection.Open();
    }

    SqlCommand mySqlSelect = new SqlCommand("SELECT * FROM [Comments]", mySQLconnection);
    mySqlSelect.CommandType = CommandType.Text;
    SqlDataAdapter mySqlAdapter = new SqlDataAdapter(mySqlSelect);
    DataTable table = new DataTable();
    mySqlAdapter.Fill(table);


    objpd.DataSource = table.DefaultView;
    objpd.AllowPaging = true;
    objpd.PageSize = 1;

    int currentPage;

    if (Request.QueryString["page"] != null)
    {
        currentPage = Int32.Parse(Request.QueryString["page"]);
    }
    else
    {
        currentPage = 1;
    }

    objpd.CurrentPageIndex = currentPage - 1;
    // Label1.Text = "Page " + currentPage + " of " + pds.PageCount;

    if (!objpd.IsFirstPage)
    {
        linkPrev.NavigateUrl = Request.CurrentExecutionFilePath + "?page=" + (currentPage - 1);



    }

    if (!objpd.IsLastPage)
    {
        linkNext.NavigateUrl = Request.CurrentExecutionFilePath + "?page=" + (currentPage + 1);



    }

    Repeater1.DataSource = objpd;
    Repeater1.DataBind();

}

これは私のHTMLです

<div class="comment">

    <asp:UpdatePanel ID="UpdatePanel1" UpdateMode="Conditional" runat="server">

        <ContentTemplate>
            <asp:Repeater ID="Repeater1" runat="server">

                <HeaderTemplate>
                    <table class="commentsx" cellspacing="0">
                </HeaderTemplate>

                <ItemTemplate>

                    <tr>
                        <td class="name">
                            <div class="right">
                                <%# Eval("CommentUserName") %>
                            </div>
                            <div class="left">
                                <%# Eval("CommentDateTime") %>
                            </div>
                        </td>


                    </tr>
                    <tr>
                        <td>
                            <div class="mess">
                                <%# Eval("CommentMessage") %>
                            </div>
                        </td>
                    </tr>


                </ItemTemplate>


                <FooterTemplate>
                    </table>
                </FooterTemplate>


            </asp:Repeater>

            <asp:HyperLink ID="linkPrev" runat="server">Previous Page</asp:HyperLink>
            <asp:HyperLink ID="linkNext" runat="server">Next Page</asp:HyperLink>
        </ContentTemplate>



        <Triggers>
            <asp:AsyncPostBackTrigger ControlID="Button1" EventName="DataBinding" />
        </Triggers>



    </asp:UpdatePanel>

</div>
4

2 に答える 2

2

Hyperlinkコントロールはポストバックをまったく実行せず、POST ではなく GET を実行する通常のリンクを評価します。

リンクのように見えるが、GET ではなくポストバックを行うものが必要なように思われるので、必要なのはLinkButton. リンクのように見えますが、ボタンのように機能し、ポストバックを実行します。

于 2012-11-13T18:33:42.543 に答える
0

私はServyの助けを借りてそれを理解するので、私は自分の質問への回答を投稿します. ハイパーリンクは Get not a post を実行するため、上記の以前のコードが機能しませんでした。そのため、コードを作り直して、以下を含めます。

  1. 2つのボタンを追加しました
  2. POST を作成する 2 つのボタンのイベント ハンドラーを作成

ここに私のコードが誰かを助けるかもしれません

public int CurrentPage
{
    get
    {
        // look for current page in ViewState
        object o = this.ViewState["_CurrentPage"];
        if (o == null)
            return 0;   // default to showing the first page
        else
            return (int)o;
    }

    set
    {
        this.ViewState["_CurrentPage"] = value;
    }
}
private void updateMessage()
{
    PagedDataSource objpd = new PagedDataSource();
    string connStr = ConfigurationManager.ConnectionStrings["yafnet"].ConnectionString;
    SqlConnection mySQLconnection = new SqlConnection(connStr);
    if (mySQLconnection.State == ConnectionState.Closed)
    {
        mySQLconnection.Open();
    }

    SqlCommand mySqlSelect = new SqlCommand("SELECT * FROM [Comments]", mySQLconnection);
    mySqlSelect.CommandType = CommandType.Text;
    SqlDataAdapter mySqlAdapter = new SqlDataAdapter(mySqlSelect);
    DataTable table = new DataTable();
    mySqlAdapter.Fill(table);


    objpd.DataSource = table.DefaultView;
    objpd.AllowPaging = true;
    objpd.PageSize = 1;
    objpd.CurrentPageIndex = CurrentPage;
    //disable pre or next buttons if necessary
    cmdPrev.Enabled = !objpd.IsFirstPage;
    cmdNext.Enabled = !objpd.IsLastPage;

    Repeater1.DataSource = objpd;
    Repeater1.DataBind();


}

protected void Page_Load(object sender, EventArgs e)
{


    updateMessage();

}



protected void cmdPrev_Click(object sender, EventArgs e)
{
    // Set viewstate variable to the previous page
    CurrentPage -= 1;

    // Reload control
    updateMessage();
}
protected void cmdNext_Click(object sender, EventArgs e)
{
    // Set viewstate variable to the next page
    CurrentPage += 1;

    // Reload control
    updateMessage();

}

ここに私のhtmlがあります

  <div  class="comment">

                     <asp:UpdatePanel ID="UpdatePanel1" UpdateMode="Conditional" runat="server">

                         <ContentTemplate>
                             <asp:Repeater ID="Repeater1" runat="server">

                                 <HeaderTemplate>
                                     <table class="commentsx" cellspacing="0">
                                 </HeaderTemplate>

                                 <ItemTemplate>

                                     <tr>
                                         <td class="name">
                                             <div class="right">
                                                 <%# Eval("CommentUserName") %>
                                             </div>
                                             <div class="left">
                                                 <%# Eval("CommentDateTime") %>
                                             </div>
                                         </td>


                                     </tr>
                                     <tr>
                                         <td>
                                             <div class="mess">
                                                 <%# Eval("CommentMessage") %>
                                             </div>
                                         </td>
                                     </tr>


                                 </ItemTemplate>


                                 <FooterTemplate>
                                     </table>
                                 </FooterTemplate>


                             </asp:Repeater>

                              <asp:button id="cmdPrev" runat="server" text=" << " onclick="cmdPrev_Click"></asp:button>
                              <asp:button id="cmdNext" runat="server" text=" >> " onclick="cmdNext_Click"></asp:button></td>
                         </ContentTemplate>

                     </asp:UpdatePanel>


                 </div>
于 2012-11-13T20:46:55.747 に答える