Csharp:user WebControl Read Adobe PDF Files In Your Web Browser

简介: namespace GeovinDu.PdfViewer { [DefaultProperty("FilePath")] [ToolboxData("<{0}:ShowPdf runat=server></{0}:ShowPdf>")] public class ShowPdf : WebControl {
namespace GeovinDu.PdfViewer
{
    [DefaultProperty("FilePath")]
    [ToolboxData("<{0}:ShowPdf runat=server></{0}:ShowPdf>")]   
    public class ShowPdf : WebControl
    {
        
#region "Declarations" 
        //Geovin Du 塗聚文 20131010
        private string mFilePath;

#endregion



        #region "Properties" 

        [Category("Source File")]
        [Browsable(true)]
        [Description("Set path to source file.")]
        [Editor(typeof(System.Web.UI.Design.UrlEditor), typeof(System.Drawing.Design.UITypeEditor))]
        public string FilePath
        {
            get
            {
                return mFilePath;
            }
            set
            {
                if (value == string.Empty)
                {
                    mFilePath = string.Empty;
                }
                else
                {
                    int tilde = -1;
                    tilde = value.IndexOf('~');
                    if (tilde != -1)
                    {
                        mFilePath = value.Substring((tilde + 2)).Trim();
                    }
                    else
                    {
                        mFilePath = value;
                    }
                }
            }
        }   // end FilePath property


#endregion


        
#region "Rendering"
        /// <summary>
        ///  Geovin Du 塗聚文 20131010
        /// </summary>
        /// <param name="writer"></param>
        protected override void RenderContents(HtmlTextWriter writer)
        {
            try
            {
                StringBuilder sb = new StringBuilder();
                sb.Append("<iframe src=" + FilePath.ToString() + " ");
                sb.Append("width=" + Width.ToString() + " height=" + Height.ToString() + " ");
                sb.Append("<View PDF: <a href=" + FilePath.ToString() + "</a></p> ");
                sb.Append("</iframe>");

                writer.RenderBeginTag(HtmlTextWriterTag.Div);
                writer.Write(sb.ToString());
                writer.RenderEndTag();
            }
            catch
            {
                // with no properties set, this will render "Display PDF Control" in a
                // a box on the page
                writer.RenderBeginTag(HtmlTextWriterTag.Div);
                writer.Write("Display PDF Control");
                writer.RenderEndTag();
            }  // end try-catch
        }   // end RenderContents


        #endregion

    }   // end class
}       // end namespace  Geovin Du 塗聚文 20131010

目录
相关文章
|
8月前
SpringCloud启动Consider defining a bean of type ‘org.springframework.web.client.RestTemplate‘ in your
SpringCloud启动Consider defining a bean of type ‘org.springframework.web.client.RestTemplate‘ in your
164 1
|
Windows
PDF工具Adobe Arcrobat Pro DC下载安装教程
Acrobat是一款PDF(Portable Document Format,便携式文档格式)编辑软件。借助它,您可以以PDF格式制作和保存你的文档 ,以便于浏览和打印,或使用更高级的功能。
753 0
|
安全 Windows
Adobe 和微软通过微软边缘为 1 亿 Windows 用户带来行业领先的 Acrobat PDF 体验
Adobe 和微软通过微软边缘为 1 亿 Windows 用户带来行业领先的 Acrobat PDF 体验。
Adobe 和微软通过微软边缘为 1 亿 Windows 用户带来行业领先的 Acrobat PDF 体验
|
安全 数据安全/隐私保护
Adobe Acrobat最强PDF编辑器软件下载安装教程步骤指南——全版本
Adobe Acrobat最强PDF编辑器软件下载安装教程步骤指南——全版本
305 0
|
安全 数据安全/隐私保护
Adobe Acrobat最强PDF编辑软件安装下载教程全版本获取安装包
Adobe Acrobat最强PDF编辑软件安装下载教程全版本获取安装包
301 0
|
数据处理 数据格式
Adobe Acrobat PDF编辑器,具备创建阅读编辑合并PDF的功能
Adobe Acrobat PDF编辑器,具备创建阅读编辑合并PDF的功能
198 0
|
安全 数据安全/隐私保护 Windows
Adobe Acrobat 最厉害的PDF编辑器软件下载安装教程全版本获取
Adobe Acrobat 最厉害的PDF编辑器软件下载安装教程全版本获取
255 0
|
安全 JavaScript 前端开发
Adobe Acrobat DC最新版本的PDF编辑器软件安装教程安装包
Adobe Acrobat DC最新版本的PDF编辑器软件安装教程安装包
299 0
PDF - 使用 Adobe Acrobat 压缩 PDF 大小
PDF - 使用 Adobe Acrobat 压缩 PDF 大小
517 0
PDF - 使用 Adobe Acrobat 压缩 PDF 大小
|
Unix Linux iOS开发
卸载Adobe Reader!一款免费、好用、轻量的PDF阅读器
一直以来,有不少同学问过我“有没有比较好用的PDF阅读器?”
卸载Adobe Reader!一款免费、好用、轻量的PDF阅读器