export data to pdf in asp.net?
-
I want to export textbox value into pdf file in asp.net
-
I want to export textbox value into pdf file in asp.net
Dear Punit, Try this may this help you....... using CrystalDecisions.CrystalReports.Engine; using System.IO; public partial class rpt : System.Web.UI.Page { private ReportDocument BidEstimates; protected void Page_Load(object sender, EventArgs e) { string RptPath = Server.MapPath("file.aspx"); BidEstimates = new ReportDocument(); BidEstimates.Load(RptPath); //ExportFormatType.PortableDocFormat is Use For PDF documents...... BidEstimates.ExportToHttpResponse(ExportFormatType.PortableDocFormat, Response, false, "ExportedReport"); } }
!- F - R - I - E - N - D - S -!
-
I want to export textbox value into pdf file in asp.net
Refer this link..... http://www.codeproject.com/Forums/12076/ASP-NET.aspx?fid=12076&select=1512702&tid=1512702[^]
!- F - R - I - E - N - D - S -!