send data when from WebBrowser control

catdance

Member
Joined
Aug 5, 2009
Messages
13
Programming Experience
Beginner
I currently have a simple VB.Net WebBrowser program uses webbrowser control, I 'd like to have certain data returned by a sever in the open web page send to the VB.net program, i.e. retrieve the html response from ASP.NET page. how can i do it?

for example

i need to query a database a user's Full Name, when data is returned by the sever side script, it won't do any update on the web page, instead it should notify the VB.net program what users' full name is.


thank you.
 
Last edited:
You can use WebClient class to submit a request and then read the response without needing a heavyweight control like WebBroswer
 
Back
Top