0

On a grid view I have added a button. And when I click the button, I am changing the status from 0 to 1 and then I want to refresh the page on button click. Please tell me how can I do this?

4

2 に答える 2

-1

これをグリッド プロパティに追加します。

OnDataBound ="Gridview_Bond"

そしてコードビハインドで -

protected void Gridview_Bond(object sender, EventArgs e)
    {
       Gridview.DataBind();
       Page.DataBind()

    }
于 2012-05-27T05:54:21.943 に答える