简体   繁体   English

ExportToPdf返回0KB

[英]ExportToPdf returns 0KB

I have used the Telerik RadEditor and the ExportToPdf method in C# but when the PDF is downloaded it contains 0KB, but it contains data in the RadEditor content. 我在C#中使用了Telerik RadEditor和ExportToPdf方法,但是在下载PDF时,它包含0KB,但它包含RadEditor内容中的数据。

This is my code: 这是我的代码:

<telerik:RadEditor runat="server" ID="RadEditor1" SkinID="DefaultSetOfTools"
Height="515px" Visible="false" ContentFilters="DefaultFilters,PdfExportFilter">
    <ExportSettings OpenInNewWindow="true" FileName="ErinLetter">
    </ExportSettings>
    <ImageManager ViewPaths="~/PDFbarcode" UploadPaths="~/PDFbarcode" DeletePaths="~/PDFbarcode"></ImageManager>
</telerik:RadEditor>
<br />
<div align="right">
    <asp:Button ID="btnPdf" runat="server" CssClass="NFButton" Text="PDF" OnClick="btnPdf_Click" />
</div>

The content binds from the backend, for example: 内容从后端绑定,例如:

<h2>Test RadEditor</h2>

but it returns 0KB. 但它返回0KB。

Try setting the RadEditor's Visible property to true. 尝试将RadEditor的Visible属性设置为true。 I don't think export will work if it is false. 我认为如果错误的话出口将不会奏效。

Also, compare your setup with the original here http://demos.telerik.com/aspnet-ajax/editor/examples/pdfexport/defaultcs.aspx and see what's the difference that breaks stuff. 另外,将您的设置与原始设置进行比较, 网址为http://demos.telerik.com/aspnet-ajax/editor/examples/pdfexport/defaultcs.aspx ,看看有什么区别。

Try to set the content inline in the declaration: 尝试在声明中内联设置内容:

<telerik:RadEditor runat="server" ID="RadEditor1" SkinID="DefaultSetOfTools"
  Height="515px" Visible="false" ContentFilters="DefaultFilters,PdfExportFilter">
    <Content>
        <h2>Test RadEditor</h2>
    </Content>
    <ExportSettings OpenInNewWindow="true" FileName="ErinLetter">
    </ExportSettings>
    <ImageManager ViewPaths="~/PDFbarcode" UploadPaths="~/PDFbarcode" DeletePaths="~/PDFbarcode"></ImageManager>
</telerik:RadEditor>

You can also hide the editor by wrapping it in a hidden 您还可以通过将编辑器包装在隐藏文件中来隐藏编辑器

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM