I need to convert data from database to pdf. I am getting the data using the specified ID.
@Html.ActionLink("Generate Form", "generateForm", "BuyersTask", new { id=pr })
When I clicked the link, it should show the data in PDF Form.
public ActionResult generateForm(int id = 0)
{
var check = db.purchaseOrders.Where(s => s.prf_Id == id).GroupBy(s => s.prf_Id).Select(s => s.FirstOrDefault());
return new PdfActionResult(check);
}
I am passing the check
to display the data in my PDF.
How is it possible that the PDF will be in landscape form?
I really need your help. Thank you
According to this link you can achieve what you want by using this code: