VBScript Class - 1 by S P SHARMA CLASSES (7048972696)
<html>
<head>
<title>First VBScript</title>
</head>
<body>
<script type="text/vbscript">
'option explicit
'document.write("Hello from VBScript")
dim a
a=15
document.write("<br/>" & A)
A=20
document.write("<br/>" & A)
document.write("<br/>" & a)
Dim b
A=20
document.write("<br/>" & A)
document.write("<br/>" & a)
</script>
</body>
</html>
No comments:
Post a Comment