Reputation: 127
I'm not trying to do ASP.NET using VB.NET applications on the desktop. I want to create a desktop application that the user can enter information and retrieve information form a interface that is styled by html, css and java script. I'm NOT trying to interact with a web page at all, i simply want to make the desktop app look and act like a web app because a similar application will be available on the web this will just be like an offline version of it.
Upvotes: 2
Views: 2368
Reputation: 1866
You could use the WebBrowser control and set it's DocumentText property to the source code of a web page or set it's DocumentStream to an IOStream of a local copy of your website. You can also use the ObjectForScripting property to exchange data between the vb.net application an the web page.
Upvotes: 2