C#如何获取((WebBrowser)sender).Print()内容? 5

下面的代码会直接跳出我要的内容。但是实际上我还要对这些内容进行处理,所以想将其保存到变量当中,求大神指点如何操作。privatevoidPrintHelpPage(){/... 下面的代码会直接跳出我要的内容。但是实际上我还要对这些内容进行处理,所以想将其保存到变量当中,求大神指点如何操作。

private void PrintHelpPage()
{ // Create a WebBrowser instance.
WebBrowser webBrowserForPrinting = new WebBrowser();
// Add an event handler that prints the document after it loads. webBrowserForPrinting.DocumentCompleted += new WebBrowserDocumentCompletedEventHandler(PrintDocument);
// Set the Url property to load the document.
webBrowserForPrinting.Url = new Uri("***");
}
private void PrintDocument(object sender, WebBrowserDocumentCompletedEventArgs e)
{
MessageBox.Show("000"); MessageBox.Show(((WebBrowser)sender).Document.GetElementById("sljaqi").InnerHtml);
//不可以用InnerItem // Print the document now that it is fully loaded.
//((WebBrowser)sender).Print();
// Dispose the WebBrowser now that the task is complete.
((WebBrowser)sender).Dispose();
}
展开
 我来答
xtfnpgy
2015-01-09 · TA获得超过1784个赞
知道大有可为答主
回答量:1989
采纳率:76%
帮助的人:1088万
展开全部
不明白你要干什么?
string s=(WebBrowser)sender).Document.GetElementById("sljaqi").InnerHtml;

你要保存哪个变量?
Print()的内容是全部的源代码?
追问
恩,print()出来加载后的代码,它现在是显示在messagebox的,我想要保存到变量里
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式