Rob van der Woude's Scripting Pages
Powered by GeSHi

Source code for htaedit.scr_test.hta

(view source code of htaedit.scr_test.hta as plain text)

  1. <!DOCTYPE HTML>
  2. <html lang="en">
  3. <head>
  4. <!--<meta http-equiv="x-ua-compatible" content="ie=9" />-->
  5. <title>My HTML application</title>
  6. <HTA:APPLICATION
  7.   APPLICATIONNAME="My HTML application"
  8.   ID="MyHTMLapplication"
  9.   VERSION="1.0"
  10. />
  11. </head>
  12. <script language="VBScript">
  1. Sub TestDebugging( )
  2. 	document.getElementById( "DoesNotExist" ).value = "Error"
  3. End Sub
  1. </script>
  2.  
  3. <body>
  4. <input type="button" value="Test" onclick="vbscript:TestDebugging( )" />
  5. </body>
  6. </html>

page last modified: 2024-04-16; loaded in 0.0240 seconds