There is a way to create an html page with html text boxes for input, or you can have vbscript on the page open inputboxes that will popup and prompt the user. Which do you want to do?
[red]"... isn't sanity really just a one trick pony anyway?! I mean, all you get is one trick, rational thinking, but when you are good and crazy, oooh, oooh, oooh, the sky is the limit!" - The Tick[/red]
<HTML>
<HEAD>
<TITLE></TITLE>
</HEAD>
<BODY>
<SCRIPT ID=clientEventHandlersVBS LANGUAGE=vbscript>
<!--
Sub btnShow_OnClick
MsgBox "The text is: " & txtShow.Value
End Sub
-->
</SCRIPT>
<P> </P>
<P>
<INPUT id=txtShow name=txtShow style="WIDTH: 484px; HEIGHT: 20px" size=121>
</P>
<P><INPUT id=btnShow type=button value=Show name=btnShow></P>
</BODY>
</HTML>
[red]"... isn't sanity really just a one trick pony anyway?! I mean, all you get is one trick, rational thinking, but when you are good and crazy, oooh, oooh, oooh, the sky is the limit!" - The Tick[/red]
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.