vb script example with variables operators inputbox .
Answers
Answered by
1
<!DOCTYPE html>
<html>
<body>
<script language="vbscript" type="text/vbscript">
'inbox with just prompt message MsgBox("hi")
'Message Box with title, yes no and cancel
Butttons a = MsgBox("any question?",3,"Choose options")
WHEN No Button pressed document.write("The Value of C is " & C)
</script>
</body>
<html>
<body>
<script language="vbscript" type="text/vbscript">
'inbox with just prompt message MsgBox("hi")
'Message Box with title, yes no and cancel
Butttons a = MsgBox("any question?",3,"Choose options")
WHEN No Button pressed document.write("The Value of C is " & C)
</script>
</body>
Similar questions