PanayiotisT
Programmer
Hello there fellow programmers . What I am asking here is simple.I have a server side script and a client-side script.
<%
Dim strtest
strtest = "Value as test"
%>
<script language=VBscript>
Dim strtester
strtester = <%=strtest%>
MsgBox strtester,,"The User Test"
</script>
As you see this is the code if I want to pass the value
from the server variable to the client script.
But what about the opposite?
Can it be done this way ? <%=strtest%> = strtester
or will it be <%strtest%> = strtester
I have some problems there .
Any suggestions?
<%
Dim strtest
strtest = "Value as test"
%>
<script language=VBscript>
Dim strtester
strtester = <%=strtest%>
MsgBox strtester,,"The User Test"
</script>
As you see this is the code if I want to pass the value
from the server variable to the client script.
But what about the opposite?
Can it be done this way ? <%=strtest%> = strtester
or will it be <%strtest%> = strtester
I have some problems there .
Any suggestions?