When I'm coding:
[QUOTE]Form1.WebBrowser1.Document.Body.InnerText()[QUOTE]
I want to delete some text from the InnerText(). How Do I do that?:confused:
Printable View
When I'm coding:
[QUOTE]Form1.WebBrowser1.Document.Body.InnerText()[QUOTE]
I want to delete some text from the InnerText(). How Do I do that?:confused:
You'll need to copy the current Document's InnerText first. Then delete the text you want (using Regex or some other way) and then write that back to the Document.