Ishan
Ishan

Reputation: 4028

Generating pdf using itextsharp in asp.net c#

I want to generate pdf file as attached in the picture. i want to harcode the contents shown in the picture into a pdf file on button click.

How do i proceed, using table structure will work?I am unable to form the table stucture here.

Please help me to sort out my problem.i want the output as shown in below image.

enter image description here

Upvotes: 0

Views: 2983

Answers (2)

Milan Jaric
Milan Jaric

Reputation: 5646

First create one table with two columns like below

_______________________________________________
|                             |               |
|                             |               |
|                             |               |
|           COL.0.1           |    COL.0.2    |
|                             |               |
|                             |               |
-----------------------------------------------

keep reference to its columns, then create table for left side content and insert it as child content of left column COL.0.1

------------------------------
| designation: xxxxxxx        |   <---- colspan = 2
------------------------------
| Audit No.        |    xxxx  |
------------------------------
| Received on .......         |
-------------------------------

and you can continue for the rest of content similar to this.

The idea is to split content to smaller tables and nest them.

Upvotes: 0

Alejandro Martin
Alejandro Martin

Reputation: 5877

Here you have a good tutorial about using iTextSharp

http://www.mikesdotnetting.com/Category/20

Upvotes: 1

Related Questions