I have 10textboxes .when we give the value to textboxes and click the button ,i want to show the entire detais in the pdf format in asp.net ..
rhino000 says: Document ds = new Document(PageSize.A4, 88f, 88f, 10f, 10f);
Document ds = new Document(PageSize.A4, 88f, 88f, 10f, 10f);
Document ds =
new
Document(PageSize.A4, 88f, 88f, 10f, 10f);
Replace the above with the below code.
Document ds = new Document(PageSize.A4, 10f, 10f, 10f, 10f);
rhino000 says: // table.SetWidths(new float[] { 0.3f, 1f });
// table.SetWidths(new float[] { 0.3f, 1f });
Uncomment the above line with the below code.
table.SetWidths(new float[] { 0.15f, 1f });
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.