Click here to Skip to main content
15,892,674 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
how to export the data into pdf format in asp.net
Posted

hello buddy..

by using ITextSharp Helper Class you can export data into pdf...

take a look on this link...

ITextSharp Helper Class[^]

happy to help.
 
Share this answer
 
Comments
fjdiewornncalwe 25-Feb-13 8:49am    
My 5.
VB
Dim x As IO.FileStream
x = IO.File.OpenWrite(Server.MapPath("File_Path") & "\" & filename)
x.Write(FileStream1, 0, FileStream1.Length)
x.Close()
Response.Redirect("File_Path/" & filename)
 
Share this answer
 

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