docwrite.htm 467 B

12345678910111213141516171819202122232425
  1. <HTML>
  2. <BODY>
  3. A page generated by Python
  4. <SCRIPT LANGUAGE="XXXVBScript">
  5. document.open()
  6. document.writeLn "<P>Hello from VBScript"
  7. document.close()
  8. </SCRIPT>
  9. <SCRIPT LANGUAGE="Python">
  10. ax.document.write("<P>Hello from Python")
  11. ax.document.close()
  12. ax.document.open()
  13. ax.document.write("<P>Hello again from Python")
  14. ax.document.close()
  15. def Window_OnLoad():
  16. pass
  17. # ax.document.write("<P>Hello from Load from Python")
  18. # ax.document.close()
  19. </SCRIPT>
  20. </BODY>
  21. </HTML>