views:

77

answers:

1

Simulating the web Client/web server interaction in a winform using a webbrowser object in vb2005.net

in short im using the web browser object as a gui for a giant treeview folder list, in the html there is a form that needs to submit to perform the action,del,rename ect,

how do i make my program catch the submit, process it and spit out the new info out to the webbrowser item in vb2005 winform.

A: 

Figured it out, you set up a net.httplistener then set it to look at the http://localhost:port

once there you can see the request and response, you then write to the response stream with html headers and the data you want

Jim