var PDF = new ActionAsPdf("TestReport", null)
{
FileName = "TestFile.pdf",
PageOrientation = Rotativa.Options.Orientation.Landscape,
PageMargins = { Left = 1, Right = 1 }
};
byte[] PDFData = PDF.BuildPdf(ControllerContext);
Is it possible to check for a string (eg. "Daily Task") in the 'PDFData' ? Please guide me. Thanks!