I am trying to redirect my page to this url http://somedomain.com/Admin/#/Admin/Partial1, I wrote this code in the controller. But redirecting to this url http://somedomain.com/Admin/%23/Admin/Partial1 and page was not landing. If I remove %23 from the generated url then the page was landing perfectly.
Please help me someone how to solve this problem.
[HttpPost]
public ActionResult Partial1(string Email)
{
//some thing code..
return RedirectToAction("/#/Admin/Partial1");
}