Click here to Skip to main content
15,906,645 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have a string variable in defaule.aspx.vb page, how to put it data attributes in <object> tag in the defaule.page aspx to display file.swf, thank you!</object>

XML
<object  type='application/x-shockwave-flash' data='<%Response.Redirect(PictureFolder)%>'
 style="height: 284px; width: 397px; margin-left: 3px;">
 <param name='wmode' value='transparent'/>
  <param name='movie'                value='<%Response.Redirect(PathFilePicture)%>' />
   <embed width='1000' height='161'></embed>
     </object>
Posted
Updated 28-Nov-13 16:18pm
v4

1 solution

XML
<object  type='application/x-shockwave-flash' data='<%Response.Redirect(PictureFolder)%>'
                           style="height: 284px; width: 397px; margin-left: 3px;">
                           <param name='wmode' value='transparent'/>
                           <param name='movie' value='<%Response.Redirect(PathFilePicture)%>' />
                           <embed width='1000' height='161'

></embed>
</object>
I want to insert pathfile file.swf into attributes data <object> tag thank you for help!</object>
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900