vbscript - Why my HTML code is not giving any result -
when running below code in ie9 displaying nothing. per understanding should display "hello world". novice user curious know problem. html code:
<html> <head> <script language="vbscript" type="text/vbscript"> function sayhello() msgbox "hello world" end function </script> </head> <body> <input type="button" onclick="sayhello()" value="say hello"/> </body> </html>
Comments
Post a Comment