Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我单击重新加载按钮时,我想重新加载同一页面。有人给出 C# 代码来实现这一点吗?
您可以使用
Response.Redirect(Request.RawUrl);
我通过谷歌搜索你的标题找到的。
您可以在那里查看更多信息:
如何在单击按钮时重新加载同一页面,使用数据库中的数据并忽略更改
如何在 ASP.NET 中刷新页面?(让它通过代码重新加载自己)
http://www.vbforums.com/showthread.php?316778-How-to-programmatically-refresh-a-page-in-asp.net
你可以这样使用
Page.Redirect(Page.Request.RawUrl,false);
或者假设您正在使用default.aspx并且想要回到同一页面使用
default.aspx
Page.Redirect("default.aspx",false);