As there is no way till now to show crystal report in a view(MVC). You can simply convert the report document as pdf using following code: public void ShowReport() { List<ToDos> lstTodos = new List<ToDos>(); lstTodos = db.ToDos.ToList(); ReportDocument rd = new ReportDocument(); rd.Load(Path.Combine(Server.MapPath("CrystalReport1.rpt"))); rd.SetDataSource(lstTodos); Stream stream; stream = rd.ExportToStream(CrystalDecisions.Shared.ExportFormatType.Portable...