I want to pass this query string to some aspx file ( WebForm1.aspx).But in here i'm unable to pass it.This is MVC5 application.Everything working but response.redirect not working
 public JsonResult SubmitReportData(SelectedReportViewModel SubmitData)
    {
        Response.Redirect("~/Report/WebForm1.aspx?Id="+SubmitData.SelectedNode+"&stDate="+SubmitData.stDate+"&enDate"+SubmitData.enDate);
        //return Json(new { x = 1 });
       return null;
    }
 
     
    