Hello, I would like to know how to return the value of a field inside a form tag so I can pass it as a query string on the action attribute by using only VBS. For example:
<form name="form1" action="someasp.asp?IwantThis=<%=document.form1.who.value%>">
<input name="who" type=text>
<input name="file" type=file value="file">
<input name="submit" type=submit value="submit">
</form>
Thanks a million.
<form name="form1" action="someasp.asp?IwantThis=<%=document.form1.who.value%>">
<input name="who" type=text>
<input name="file" type=file value="file">
<input name="submit" type=submit value="submit">
</form>
Thanks a million.