I have this HTML:
<form name=tett>
<input type=text name=tf value="testing prompt" size=15>
</form>
And this JavaScript:
var df = prompt(" enter your name ");
document.tett.tf.value = df;
How can I do this in VBScript?
I have this HTML:
<form name=tett>
<input type=text name=tf value="testing prompt" size=15>
</form>
And this JavaScript:
var df = prompt(" enter your name ");
document.tett.tf.value = df;
How can I do this in VBScript?