• 9.0:EVO PDF Viewer Control for ASP.NET


    EVO PDF Viewer Control for ASP.NET

    EVO PDF Viewer control for ASP.NET can be linked into any ASP.NET application to add PDF visualization and manipulation capabilities to your ASP.NET application.

     

    EVO PDF Viewer Control for ASP.NET
    EVO PDF Viewer control for ASP.NET can be linked into any ASP.NET application to add PDF visualization and manipulation capabilities to your ASP.NET application. With EVO PDF Viewer for ASP.NET you can display a PDF from a specified URL or from stream of bytes into the client browser, control PDF security options to disable content copying or printing. The integration is extremely easy. The free Adobe Reader is required on the client computer where the control is displayed in browser.
     ASP.NET server control and C# samples
     Display a PDF document given as a stream of bytes
     Display PDF documents from a specified URL
     Navigate and print the document from browser
     Show or hide viewer toolbars
     Show or hide viewer scroll bars
     Show or hide viewer navigation panel
     Disable PDF document printing or copying
     Royalty free development libraries and samples
     Support for .NET 4.0 framework and later
     Documentation and C# samples for all the features

    Code Sample - PDF Viewer for ASP.NET

    The code below was taken from the PDF Viewer for ASP.NET demo application available for download in the product package. In this sample an instance of the PdfViewer class is used to display a PDF document in a browser.
    using System;
    using System.Data;
    using System.Configuration;
    using System.Collections;
    using System.Web;
    using System.Web.Security;
    using System.Web.UI;
    using System.Web.UI.WebControls;
    using System.Web.UI.WebControls.WebParts;
    using System.Web.UI.HtmlControls;
    
    // the HTML to PDF converter namespace
    using EvoPdf;
    
    // the PDF Viewer namespace
    using EvoPdf.PdfViewerAspNet;
    
    namespace PdfViewer4AspNetDemo
    {
        public partial class DisplayPdfBytes : System.Web.UI.Page
        {
            protected void Page_Load(object sender, EventArgs e)
            {
                if (!IsPostBack)
                {
                    LoadPageFitModes();
                    LoadDocumentDisplayModes();
    
                    LoadPdfStream();
                }
            }
    
    
            protected void btnConvert_Click(object sender, EventArgs e)
            {
                // apply the viewer settings before loading the PDF from stream
                ApplyViewerPreferences();
                ApplySecurityOptions();
    
                LoadPdfStream();
            }
    
            private void LoadPageFitModes()
            {
                string[] pageFitModes = Enum.GetNames(typeof(PageFitMode));
                ddlPageFitMode.DataSource = pageFitModes;
                ddlPageFitMode.DataBind();
                ddlPageFitMode.SelectedValue = pdfViewerControl.PageFitMode.ToString();
            }
    
            private void LoadDocumentDisplayModes()
            {
                string[] pageModes = Enum.GetNames(typeof(DocumentDisplayMode));
                ddlPageMode.DataSource = pageModes;
                ddlPageMode.DataBind();
                ddlPageMode.SelectedValue = pdfViewerControl.DocumentDisplayMode.ToString();
            }
    
            private void ApplyViewerPreferences()
            {
                pdfViewerControl.DocumentDisplayMode = 
                    (DocumentDisplayMode)Enum.Parse(typeof(DocumentDisplayMode), ddlPageMode.SelectedValue);
                pdfViewerControl.ShowNavigationPanel = cbShowWindowUI.Checked;
                pdfViewerControl.ShowScrollbars = cbShowScrollbars.Checked;
                pdfViewerControl.ShowToolbarMode = 
                    cbShowToolbar.Checked ? ShowToolbarMode.Show : ShowToolbarMode.Hide;
                pdfViewerControl.PageFitMode = 
                    (PageFitMode)Enum.Parse(typeof(PageFitMode), ddlPageFitMode.SelectedValue);
            }
    
            private void ApplySecurityOptions()
            {
                pdfViewerControl.PdfSecurityOptions.CanPrint = cbAllowPrint.Checked;
                pdfViewerControl.PdfSecurityOptions.CanCopyContent = cbAllowContentCopy.Checked;
                pdfViewerControl.PdfSecurityOptions.CanFillFormFields = cbAllowFormFilling.Checked;
                pdfViewerControl.PdfSecurityOptions.CanEditContent = cbAllowContentEdit.Checked;
                pdfViewerControl.PdfSecurityOptions.CanEditAnnotations = cbAllowEditAnnotations.Checked;
                pdfViewerControl.PdfSecurityOptions.CanAssembleDocument = cbAllowAssemble.Checked;
    
                pdfViewerControl.PdfSecurityOptions.UserPassword = textBoxUserPassword.Text.Trim();
            }
    
            private void LoadPdfStream()
            {
                //get the PDF stream
                string urlToConvert = textBoxURLToConvert.Text.Trim();
                byte[] pdfBytes = new PdfConverter().GetPdfBytesFromUrl(urlToConvert);
    
                // set the PDF bytes to be loaded in viewer
                pdfViewerControl.LicenseKey = "OLant6Kvt6e3ormnt6Smuaalua6urq4=";
                pdfViewerControl.PdfSourceBytes = pdfBytes;
            }
    
            protected void btnApplyViewerPreferences_Click(object sender, EventArgs e)
            {
                // update the viewer preferences
                ApplyViewerPreferences();
                ApplySecurityOptions();
            }
        }
    }
  • 相关阅读:
    c++ || mutable_explicit_volatile关键字
    机器学习-随机森林算法预测房租模型
    Java多线程之线程池
    全国双非院校考研信息汇总整理 Part.6
    kubeadm安装kubernetes
    java简单实现AIDL进程通信
    The Last Naruto,兼容IE11的vue脚手架
    5种促进业务增长的软件测试策略,我敢打赌你一定不知道?
    滑动窗口 ( 单调队列 )
    算法分享三个方面学习方法(做题经验,代码编写经验,比赛经验)
  • 原文地址:https://blog.csdn.net/john_dwh/article/details/127645962