I am trying to find out if there is a way to build a VB app that can be called(not using ASP) sending paramters to return a HTML generated page. An example would be:

http://www.coolsite.com/vbprogram.exe?fruit=apples

and having a vb program take the parameter and dynamically return HTML, i.e.:

<HTML>
Your favorite fruit are apples.
</HTML>

The purpose of this app is to be able to build a application that could run on either IIS or Netscape, and not rely on IIS as the ONLY delivery method.

Thanks, your help is much appreciated!