How to redirect to a controller action from a JsonResult method in asp.net mvc?
        Posted  
        
            by Pandiya Chendur
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Pandiya Chendur
        
        
        
        Published on 2010-05-19T11:20:19Z
        Indexed on 
            2010/05/19
            11:30 UTC
        
        
        Read the original article
        Hit count: 501
        
I am fetching records for a user based on his UserId as a JsonResult...
public JsonResult GetClients(int currentPage, int pageSize)
{
   if (Session["UserId"] != "")
   {
      var clients = clirep.FindAllClients().AsQueryable();
      var count = clients.Count();
      var results = new PagedList<ClientBO>(clients, currentPage - 1, pageSize);
      var genericResult = new { Count = count, Results = results };
      return Json(genericResult);
   }
   else
   {
         //return RedirectToAction("Index","Home");
   }
}
How to redirect to a controller action from a JsonResult method in asp.net mvc?Any suggestion...
© Stack Overflow or respective owner