So far, what i have is this from an online forum posted here over a year and a half ago:
- <script language="vbscript" type="text/vbscript">
- Function MyFunction()
- ' do some stuff
- End Function
- </script>
- <script language="python" type="text/python">
- import random
- code = random.choice(['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', '1', '2', '3', '4', '5', '6', '7', '8', '9', '0' ])
- print code
- </script>