tc3596
Technical User
- Mar 16, 2001
- 283
I'll try to explain myself clearly. Here is some code...
<%
Option Explicit
Response.Expires = -1
Response.Buffer = True
Dim vScaleNo
%>
<input id="lazy" type="hidden">
call dice()
<script language="vbscript" type="text/vbscript">
sub Dice()
dim Prj
Prj = document.getElementById("CSSDK_D_Scale_Number").value
document.getElementById("lazy").value = Prj
end sub
</script>
question: can I set vScaleNo to the value of Prj? I have tried several things but nothing is working. Any help would be appreciated. CSSDK_D_Scale_Number is being set somewhere else. So far, I know that "Lazy" is being updated properly with the value from "CSSDK_D_Scale_Number". I create the "lazy" control just to see it working correctly. I really just need to set the variable "vScaleNo" to the value of "CSSDK_D_Scale_Number".
<%
Option Explicit
Response.Expires = -1
Response.Buffer = True
Dim vScaleNo
%>
<input id="lazy" type="hidden">
call dice()
<script language="vbscript" type="text/vbscript">
sub Dice()
dim Prj
Prj = document.getElementById("CSSDK_D_Scale_Number").value
document.getElementById("lazy").value = Prj
end sub
</script>
question: can I set vScaleNo to the value of Prj? I have tried several things but nothing is working. Any help would be appreciated. CSSDK_D_Scale_Number is being set somewhere else. So far, I know that "Lazy" is being updated properly with the value from "CSSDK_D_Scale_Number". I create the "lazy" control just to see it working correctly. I really just need to set the variable "vScaleNo" to the value of "CSSDK_D_Scale_Number".