I have an interesting issue where i have to embed a Flash Object in my template. Now i have always been able to get this to work but this time the embed source file requires a question mark at the end of the filename.swf file.
For example the following code of src="main_F7.swf?button=0" gets lost with the question mark and button=0 is added. This only happens when i embed the complete Flash ActiveX object inside my DNN ascx file. I'm also correctly scripting the embedded ActiveX object. Its just that DNN ascx does not like my using the QUESTION MARK along with button=0. In other words using filename.swf?button=0. Basically i'm just trying to pass a variable to the activeX object stating that the variable "button" needs to be set to 0.
I've also tried to encode the url reference using src="main_F7.swf%3Fbutton=0" which does not work either. I only run into a problem when trying to use the Question Mark inside DNN to reference the file. Is the Question Mark a reserved Character in DNN? Any Suggestions? |