Ok maybe this question shouldn't be here, but does anyone know how you to automatically make changes to an HTML page without manually altering the source. For example, when I post a reply on this forum it appends that to the original HTML page.
Printable View
Ok maybe this question shouldn't be here, but does anyone know how you to automatically make changes to an HTML page without manually altering the source. For example, when I post a reply on this forum it appends that to the original HTML page.
<cough>FTP</cough>
You could probably use FTP to do it and the Webbrowser Control to upload it to a server.
Here is an example of an FTP: InetFTP
And use this to navigate and get the source of a page.
And then save it and (using the FTP example) upload it to the server.Code:Webbrowser1.Navigate "http://www.vb-world.net"
Text1.Text = Webbrowser1.Document.documentElement.innerHTML
Code:Open App.Path & "\source.htm" For Output As #1
Print #1, Text1.text
Close #1