我在asp .net (http://localhost/error/pagenotfound).
中有一个页面
页面上有一个链接,单击该链接时必须从我来自的位置返回到上一页。
<a href="#">Go Back to Previous Page.</a>
如何从历史记录中返回上一页
最佳答案
您可以使用此:
<a href='javascript:history.go(-1)'>Go Back to Previous Page</a>
关于c# - 超链接返回到ASP .NET中的上一页,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14037870/