Forums
This topic is locked
any way to use my asp variable in flash param name
Posted 28 Jun 2005 21:18:16
1
has voted
28 Jun 2005 21:18:16 dianne massey posted:
my asp page has a variable in <%picname%>, I need to call a 3rd party flash softwareand load it on the same page as:
<PARAM NAME="FlashVars" VALUE="zoomifyImagePath=test/0901606000165">
because my folder 0901606000165 changes names for each image, how can I pass the variable
picname in its place and not hardcode it, to the path? that way it would always get the correct pic folder.
Replies
Replied 15 Jul 2005 16:45:02
15 Jul 2005 16:45:02 myke black replied:
This should do it:
<pre id=code><font face=courier size=2 id=code>
<PARAM NAME="FlashVars" VALUE="zoomifyImagePath=test/<%=picname%>">
</font id=code></pre id=code>