2

我有一个 asp.net 按钮,

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

如何将用户重定向到同一页面?

更新

我这样做的原因是因为我正在对数据库进行一些更改并使用异步回发但它们在 GridView 中不可见,除非我进行页面引用。

我已经试过了

 <asp:AsyncPostBackTrigger

 <asp:PostBackTrigger

但没有收获只有痛苦

4

2 回答 2

1

您可以使用获取当前页面网址

string Pageurl = HttpContext.Current.Request.Url.AbsoluteUri;
于 2013-05-16T10:17:47.647 回答
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 回答