Sameer Khan

Sameer Khan

  • 1.1k
  • 272
  • 37.1k

How to print only Custom Table to pdf file using asp .net

Jul 13 2015 2:15 AM
This is my design source code And Custom Table Name is tblPresent print this table on pdf file!!!
 
<div id="divprint" runat="server">
   <table id="exportTable" cellpadding="0" runat="server" cellspacing="0" width="100%">
      <tr>
         <td>
            <asp:Table ID="tblPresent" runat="server" CellPadding="0" CellSpacing="0"             Width="100%">  
          </asp:Table>
         </td>
      </tr>
   </table>
</div>
 

Answers (1)