我想在文本框中获取完整的iframe ..
<textarea id="embed_code" spellcheck="false" onclick="this.select()" style="opacity: 1;">
<iframe frameborder="0" width="480" height="270" src="http://www.dailymotion.com/embed/video/x18adty"></iframe>
</textarea>
我的代码如下:
HtmlDocument doc = webBrowser1.Document;
textBox5.Text = doc.GetElementById("video_title").InnerText;
HtmlElement body = doc.GetElementById("embed_code");
textBox3.Text = body.GetElementsByTagName("iframe").ToString();