Hi,
Suppose i have a form in Visual Basic wherein i ask the user to enter values in the text boxes and with the help of those values in the text boxes i should be able to generate a html page.
For Eg: I have 2 textboxes wherein the user enters a heading and the name of an image that should appear on the html page, how would i generate that html page that should look somewhat like this....
<html>

<h1>heading entered by the user</h1>

<img src="test.jpg">image that should appear</img>

</html>

So i would like to see the output in any browser.
I would appreciate any help,
Thanks in advance,
Derek