+ 2
How to print value of variable in vbscript
4 Respostas
+ 4
if i am opening website and wanted to print some information, will echo print in website or seperate logs
+ 3
thanks for your clarifications... but i just want to know shall we use JavaScript commands in VB script as document. write belongs to js
+ 2
You can just use WScript.Echo (text or variable name to print its content).
Example of code:
Dim x = "Hello"
WScript.Echo x.
+ 2
Than, for web you may use document.write(variable name)
:)