Glen
-
Total Posts
:
1
- Scores: 0
-
Reward points
:
0
- Joined: 3/4/2011
-
Status: offline
|
How do I access variable?
Friday, March 04, 2011 1:59 AM
( permalink)
I have a script that determines the size of a file and assigns it to a variable. I need to access it via vbscript. here is the stripped example, but the msgbox is blank when <%=myString%> shows the correct value. <% .............. myString = objFl.DateLastModified%> <Script language = "vbscript"> Sub Button_OnClick() msgbox myString End Sub
</Script>
|
|
|
|
webber123456
-
Total Posts
:
58
- Scores: 0
-
Reward points
:
0
- Joined: 9/20/2007
-
Status: offline
|
Re:How do I access variable?
Friday, March 04, 2011 6:34 AM
( permalink)
<% myString = objFl.DateLastModified%> <Script language = "vbscript"> Sub Button_OnClick() msgbox ("<%=myString%>") End Sub </Script>
|
|
|
|