I Use Telerik RADControls with VB .NET I would like to assign a tooltip value to a RAD Control and use that Value to Dynamiclly Embed a Flash file to a Multipage here is a static embed code I use that successfully embeds the file
<OBJECT CLASSID="CLSID27CDB6E-AE6D-11cf-96B8-444553540000"
CODEBASE=" ID="FVS" style="height: 600px; width: 850px;">
<PARAM NAME="movie" VALUE="./videos/0.swf" />
</OBJECT>
I would like to replace the 0.swf with the tooltip text of the rad control. The control is provided the tool tip text by an XML file and the control passes the value at postback I just need to get that value to replace the SWF filename in the embed code.
I know how to DIM the value of the control but can't seem to get a handle on using its value in the embed statement
<% if page.ispostback then
Dim ttt as string
ttt=radtreeview2.selectednode.tooltip.text
End IF %>
Thanks for any advice......
If Knowledge were power I would be a AAA Battery!
<OBJECT CLASSID="CLSID27CDB6E-AE6D-11cf-96B8-444553540000"
CODEBASE=" ID="FVS" style="height: 600px; width: 850px;">
<PARAM NAME="movie" VALUE="./videos/0.swf" />
</OBJECT>
I would like to replace the 0.swf with the tooltip text of the rad control. The control is provided the tool tip text by an XML file and the control passes the value at postback I just need to get that value to replace the SWF filename in the embed code.
I know how to DIM the value of the control but can't seem to get a handle on using its value in the embed statement
<% if page.ispostback then
Dim ttt as string
ttt=radtreeview2.selectednode.tooltip.text
End IF %>
Thanks for any advice......
If Knowledge were power I would be a AAA Battery!