How can VBScript code access JScript code variables in the same ASP page?
<SCRIPT LANGAUGE="VBScript">
Dim a
a = 10
</SCRIPT>
<SCRIPT LANGUAGE="JScript">
Response.Write(a);
</SCRIPT>
Also, is this valid JScript code because ASP hasn't complained.
<SCRIPT LANGUAGE="JScript">
function ...
more >>
Apparently in IE7 you can no longer use
control.disabled = true;
control.disabled = false;
Instead you must use
control.disabled = 'disabled';
But
control.disabled = 'enabled'
doesn't work.
Neither does
control.disabled = '';
Anyone know the correct cross-browser solution...
more >>