How do I insert a <input type="text" ...> in a Systems.Windows.Forms.HtmlDocument?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
|
|
|
You can use htmlelement to create a input type tag
Refer this http://msdn.microsoft.com/en-us/library/system.windows.forms.htmldocument.aspx |
|||
|
|
|
http://msdn.microsoft.com/en-us/library/system.windows.forms.webbrowser.document.aspx#Y300 gives an example on how you could do it but that will become a maintenance nightmare after a while. might be beter to use the createElement - method that can be found here http://msdn.microsoft.com/en-us/library/system.windows.forms.htmldocument.aspx |
|||
|
|