
How do I make my VC++ application interact with a Web application
Well this is just a scenario. What I'm really trying to
do is to have my VC++ application pass a message to the
web application and with that message the web application
will execute something.
Quote:
>-----Original Message-----
>What about having two web pages; one with a green
background another with a
Quote:
>red background. Drop a browser control into your C++ app
and tell it to
>navigate to the the appropriate page.
>> If I have a VC++ application that wants to talk to a Web
>> application, how do I go about doing this?
>> For instance I have two applications:
>> 1. A VC++ application that asks a user a question and
gets
>> the user's answer. The answer will either be yes or no.
>> 2. A simple web application that changes its background
>> color depending on the user's answer. Green for YES,
and
>> Red for NO.
>> How would I connect the two application so that if the
>> user's answer is yes, the C++ application will send a
>> message to the Web app. that the answer is indeed yes
and
>> that the Web application will respond by changing its
>> background color to green?
>.