PdfLayoutFormat format=new PdfLayoutFormat();
format.Layout=PdfLayoutType.Paginate;
format.PaginateBounds = new RectangleF(0, 110, document.PageSettings.Width, document.PageSettings.Height);
//Draw the table
table.Draw(page, new RectangleF(0, 110, document.PageSettings.Width, document.PageSettings.Height), format);
AddHeader(document);
// Save and close the document.
document.Save("Sample.pdf",HttpContext.ApplicationInstance.Response,HttpReadType.Save);
Also we have attached the sample for your reference in below link :
http://www.syncfusion.com/downloads/support/forum/119065/MvcApplication1-2100998301.zip
Please try this and let us know the result, if you still faces any issue please modify the attached sample to reproduce the issue and provide us. So that we can analyze in this to provide you the better solution.
Regards,
Abirami.