下面是我用来阅读网页的代码,我可以从外部网页上读取,但我需要阅读本地的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调用吗?
蒂亚。