Click here to Skip to main content
15,892,643 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more: (untagged)
Suppose I Have Table Like
ASP.NET
<table id="TblView"   runat="server">
  <tr>
    <td>
      Test
    </td>
  </tr>

And VB Code Is
VB
Dim doc As New Document(iTextSharp.text.PageSize.LETTER, 10, 10, 42, 35)
Dim wri As PdfWriter = PdfWriter.GetInstance(doc, New FileStream("D:\Test.pdf", FileMode.Create))
doc.Open()
Dim paragraph As New Paragraph("Test")
doc.Add(paragraph)
doc.Close()

Above code is work ...!!!
In [Dim paragraph As New Paragraph("Data Test By Jimmy R DaRji")] But I want to Use Table to display Instead of Paragraph Through Table ID Like "TblView".....

Plaese Halp Me Out

Quick.....!!!!!!

[EDIT]COde tags added - LOSMAC[/EDIT]
Posted
Updated 11-May-12 12:29pm
v7

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900