Tagged Questions
6
votes
3answers
4k views
iTextSharp international text
I have a table in asp.net page,and trying to export it as a PDF file,I have couple of international characters that are not shown in generated PDF file,any suggestions,
Thanks in advance
3
votes
1answer
262 views
export in pdf report
I have a web report(.aspx page). I like to have a functionality to export that report into pdf format. Is there any way I can export it to PDF format without using any third party control or ...
1
vote
0answers
32 views
Crystal Report - Exporting to PDF in both Landscape & Portrait
I've a crystal report which is having two pages; one in Portrait and the second one is in Landscape format. In report it looks fine but when I exporting it to a PDF, both pages got exported in ...
1
vote
2answers
738 views
ASP.Net page export to pdf
I got stuck with my ASP.Net export to PDF. Below are my codes. Please help.
Response.Clear();
Response.Buffer = true;
Response.Charset = Encoding.UTF8.HeaderName;
Response.ContentEncoding ...
1
vote
1answer
3k views
Export MS Charts to PDF and Excel
I need to export a few (could be just one or more than one) Microsoft Charts to a PDF and Excel. It needs to happen on a button click and the charts should be directly exported to a PDF without ...
1
vote
2answers
525 views
Exporting combined data/charts to a single PDF from a ASP.NET web app
We have a ASP.NET C# web application and are trying to find a way to combine data/tables and charts that can be exported a single PDF.
Some things we're looking for...
The ability to export a ...
1
vote
2answers
414 views
Exporting web applications pages to excel/pdf
We have a requirement to export different pages of our I.E. only web application to Excel/pdf documents.
The pages have graphics/grids/text, etc...They should also be printable as well.
I heard ...
1
vote
1answer
2k views
Problem with Crystal Report in ASP.NET - ExportToHttpResponse
I am using the code to export pdf file from a popup.
On button click
function popupReport()
{
var url = 'Report.aspx';
window.open(url, 'winPopupReport', ...
0
votes
1answer
213 views
Export to pdf in asp.net + vb.net using itextsharp
I am trying to export gridview(HTML Based) to a pdf in asp.net+vb.net(backend). When I click on the Export to PDF button the download window shows, but when you click on open Adobe reader will open ...
0
votes
3answers
735 views
VerifyRenderingInServerForm(System.Web.UI.Control) while export grid view to pdf
I have try to export data from gridview to pdf in normal .aspx it is working but when i try this in webusercontrl.ascx form it shownig error like
...
0
votes
1answer
173 views
RadEditor ExportToPDF not generating PDF in client's environment
We are using the Telerik RadEditor control, specifically for it's ability to render a PDF via the ExportToPDF() method on the control. We find that this works great in our development and test ...
0
votes
1answer
2k views
How I can export a datatable to MS word 2007, excel 2007,csv from asp.net?
I am using the below code to Export DataTable to MS Word,Excel,CSV format & it's working fine. But problem is that this code export to MS Word 2003,Excel 2003 version. I need to Export my ...
0
votes
1answer
854 views
How to export current ASPX page to PDF
I have a web page that uses a combination of gridviews and html elements to create a report. I would like to give the user an option to click and it will export to a pdf. I would prefer not to create ...