LOOSE BINDING(VBSCRIPT)

Vb Script provides freedom to use variables without declaring it.
This technique is called as Loose Binding.

Example:

<html>
<head></head>
<body>
<script type="text/vbscript">
s=4000
document.write("s value is="&s&"</br>)
t="vbscript"
document.write("t value is="&t&</br>)
</script>
</body>
</html>

No comments:

Post a Comment