I have some simple code in an aspx page
<object width="550" height="400">
<param name="movie" value='XXXX' />
<embed src='XXXX' width="350" height="370"></embed>
</object>
I want to be able to dynamically set the value of XXXX.
What is the best way to do this ?
You could add a property to your codebehind, say ‘MyProperty’, set the value during load, and then access that property right in your aspx…
In codebehind…
In the Aspx…