JimmyZ1
Technical User
- Mar 31, 2004
- 397
Can someone help start me out?
Is there a way to create a simple html page with vbscript input boxes?
Is there a way to create a simple html page with vbscript input boxes?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<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>