ActionLink back button

前端 未结 3 2096
旧巷少年郎
旧巷少年郎 2020-12-21 18:42

I have an Index method that does double duty as showing a list of posts and a queried list of posts and can also have pages so you get urls like /News/Page/1 or

3条回答
  •  梦毁少年i
    2020-12-21 18:58

    It would probably be easier to just use javascript to send them back to the last page in their history (without creating a link to the specific page).

    history.go(-1)
    

提交回复
热议问题