Deltaflyer
Programmer
Just out of curiousity and a desire to type a little less, i am using ASP, and am looking for an easier way to pass variables from vbscript to jscript. At the moment i am using a form and calling
<form name=formname>
<input type=hidden name=fieldname value=value>
</form>
...
...
...
<script language=javascript>
var variable = document.formname.fieldname.value
</script>
is there an easier way to get the variable in without doing an invisible form.
DeltaFlyer ;-)
DeltaFlyer - The Only Programmer To Crash With Style.
<form name=formname>
<input type=hidden name=fieldname value=value>
</form>
...
...
...
<script language=javascript>
var variable = document.formname.fieldname.value
</script>
is there an easier way to get the variable in without doing an invisible form.
DeltaFlyer ;-)
DeltaFlyer - The Only Programmer To Crash With Style.