Tuesday 26 January 2021

VBscript class-12 (part-2 input-box)

 <html>

<body>

<script type="text/VBScript">


a=inputBox("Enter a number")

msgBox a

b=inputBox("Enter a number","Input Box")

msgBox b


c=inputBox("Enter a number","Input Box", 123)

msgBox c


</script>

</body>

</html>

No comments:

Post a Comment