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

Popular posts from this blog

javascript - Google App Script ContentService downloadAsFile not working -

javascript - Function overwritting -

php - Find a regex to take part of Email -