I am making a web browser and I need to figure out something. When the user types into a text box and presses a button, it will make a new link label with that address that they typed into the text box. I've tried and looked everywhere but I can't find anything on how to do it.
Asked
Active
Viewed 117 times
1 Answers
0
If using the built-in WebBrowser control, then you can do it all in js. Of if you need interop with your c# code then you can get a reference to the dom document (WebBrowser.Document
) and call standard dom methods.

Sam Axe
- 33,313
- 9
- 55
- 89