ITextSharp读取本地cshtml文件

时间:2016-03-28 14:27:36

标签: asp.net-mvc pdf itextsharp itext html-to-pdf

下面是我用来阅读网页的代码,我可以从外部网页上读取,但我需要阅读本地的html类。

class App extends React.Component {
  shouldComponentUpdate (nextProps) {
    nextProps.params.screen
    return false
  }
}

通过这种方式,由于活动目录限制,我无法访问localhost。

我需要的是这样的事情。

Document document = new Document();
            try
            {
                PdfWriter.GetInstance(document, new FileStream("C:\\teklif.pdf", FileMode.OpenOrCreate));
                document.Open();
                WebClient wc = new WebClient();
                
                string HtmlText = wc.DownloadString("http://localhost:60972/Reports/Index");
                Response.Write(HtmlText);
                List<IElement> HtmlArrayList = HTMLWorker.ParseToList(new StringReader(HtmlText), null);
                for (int k = 0; k < HtmlArrayList.Count; k++)
                {
                    document.Add((IElement)HtmlArrayList[k]);
                }

                document.Close();
            }
            catch
            {
            }
            
            return View();

或者发送html对象的方式应该是通过AJAX调用吗?

蒂亚。

0 个答案:

没有答案