Hi, All
Does anybody know how I can put and use the value of fname into my ASP code,
I would normally use,
or even
in javascript, but on this occasion I need to get the variable from the javascript (if it can be done),
Thanks.
Does anybody know how I can put and use the value of fname into my ASP code,
Code:
<script>
var fname="John Smith";
</script>
Code:
<%=fname%>
I would normally use,
Code:
Dim fname
fname="John Smith"
or even
Code:
document.write(fname);
in javascript, but on this occasion I need to get the variable from the javascript (if it can be done),
Thanks.