2

私はasp.netボタンを持っています、

protected void myPreciousButton_Click(object sender, EventArgs e)
{
     //My Logic is happening
     Response.Redirect( What will go here ??);
}

ユーザーを同じページにリダイレクトするにはどうすればよいですか?

アップデート

私がこれを行っている理由は、データベースにいくつかの変更を加え、Asychronize Post Backs を使用しているためですが、ページを参照しない限り、それらは GridView に表示されません。

私はすでに試しました

 <asp:AsyncPostBackTrigger

 <asp:PostBackTrigger

しかし、痛みだけは得られません

4

2 に答える 2

1

使用できます

protected void myPreciousButton_Click(object sender, EventArgs e)
{
     Response.Redirect(HttpContext.Current.Request.Url.AbsoluteUri);
}

ページを更新したい場合;

Response.Redirect(Page.Request.Url.ToString(), true);
于 2013-05-16T10:19:11.887 に答える
1

を使用して現在のページの URL を取得できます

string Pageurl = HttpContext.Current.Request.Url.AbsoluteUri;
于 2013-05-16T10:17:47.647 に答える