在我的项目中,我在点击链接时将用户重定向到另一个页面。它在firefox和chrome中工作正常,但是它显示302状态并且它没有重定向到其他页面。我该如何解决这个问题。
<a title="Go toCompany" style="background: none!important" href='<%= Url.Action("XYZ","BuildingProject",new {id=item.Id})%>'>
点击上面的代码,
public ActionResult XYZ(int id)
{
Helpers.SessionHelper.SetSession(id);
BuildingProjectRepository p = new BuildingProjectRepository();
return RedirectToAction("Index");
}
,用户被重定向到索引页面。