Advertisement
Guest User

Untitled

a guest
Jul 16th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. @{
  2. DateTime today = DateTime.Today;
  3. DateTime startOfMonth = new DateTime(today.Year, today.Month, 1);
  4.  
  5.  
  6. DateTime today1 = DateTime.Today;
  7. DateTime endOfMonth = new DateTime(today1.Year, today1.Month, DateTime.DaysInMonth(today1.Year, today1.Month));
  8.  
  9. UriReportSource trial = new UriReportSource();
  10. trial.Uri = "Card Summary Report.trdx";
  11. trial.Parameters.Add("DateFdy", startOfMonth);
  12. trial.Parameters.Add("DateEnd", endOfMonth);
  13. trial.Parameters.Add("Culture", (string)ViewData["lang"]);
  14. }
  15. @(Html.TelerikReporting().ReportViewer()
  16. .Id("reportViewer1")
  17.  
  18. .ServiceUrl("/api/reports/")
  19. .ReportSource(trial)
  20. .ViewMode(ViewModes.INTERACTIVE)
  21. .ScaleMode(ScaleModes.SPECIFIC)
  22. .Scale(1.0)
  23. .PersistSession(false))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement