Communicate between VB .Net Application and a web-page

manishtomar

New member
Joined
Jan 4, 2006
Messages
1
Programming Experience
Beginner
I am developing an application in VB .NET which has a browser component in it. The web-page loaded in this browser component needs to send some information to the application. How can i achieve this?

One possible solution which i dont want to use is using FSO ActiveX object. I create a file and put data in it which can be read by the app

Can i do this by creating an ActiveX control in this application which can be used by the web-page? If so, pls tell me how to do it as I am new to VB .NET.

Thanks in advance,
Manish
 
What type of app is this suppose to be?

Is it running on a web server? If so you can create an asp.net application... webforms (web pages) with server side code to handle the data transfer between your page and server side code to stored in db or what ever.

Food for thought :)
 
Back
Top