我拥有此网站:http://www.sohjel.ir;我已经使用ASP.NET Core 2.1 MVC Session实现了一个名为“ Watch Bag”的选项。 我的问题是:我想返回到我在单击此按钮并将该课程添加到“ Watch Bag”之后的那一页面中单击“ Add To Watch Bag”的确切位置,而不是返回“ Begin of Page”。 我怎么做?! 请注意,我已经在控制器中使用了以下代码:
[HttpPost]
[ValidateAntiForgeryToken]
public async Task<IActionResult> Index(int id)
{
List<int> lstViewBag = HttpContext.Session.Get<List<int>>("sjViewBag");
if (lstViewBag == null)
{
lstViewBag = new List<int>();
}
lstViewBag.Add(id);
HttpContext.Session.Set("sjViewBag", lstViewBag);
return RedirectToAction("Index", "Home", new { area = "Customer" });
}