C#在htmldocument中插入<input />

时间:2011-05-09 08:18:58

标签: c# input insert dom

如何在<input type="text" ...>中插入Systems.Windows.Forms.HtmlDocument

2 个答案:

答案 0 :(得分:1)

您可以使用htmlelement创建输入类型标记

HtmlElement input = doc.CreateElement("input");

参考这个 http://msdn.microsoft.com/en-us/library/system.windows.forms.htmldocument.aspx

答案 1 :(得分:0)

http://msdn.microsoft.com/en-us/library/system.windows.forms.webbrowser.document.aspx#Y300 举例说明如何做到这一点,但这会在一段时间后成为维护的噩梦。

可能更难以使用createElement - 这里可以找到的方法 http://msdn.microsoft.com/en-us/library/system.windows.forms.htmldocument.aspx