Click here to Skip to main content
15,887,746 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello friends,
I am working on flash images in asp.net.This is my code to use flash image in asp.net.
HTML
<object width="684" height="70">
<param name="movie" value="Images/Top banner.swf">
<embed src="Images/Top banner.swf" width="684" height="70">
</embed>
</object>

Now i want to redirect user on a asp.net webpage ,on click of this flash image.what i need to do for that.
Thanks in advance .
Posted
Updated 5-Aug-11 2:40am
v3

 
Share this answer
 
Comments
Espen Harlinn 5-Aug-11 12:26pm    
The answer provided by the first link is reliable, my 5
thatraja 5-Aug-11 12:30pm    
Actually this bunch is useful for me too.
Have you tried to wrap the object element in an anchor

<a href='mypage.aspx'>
<object width="684" height="70">
<param name="movie" value="Images/Top banner.swf">
<embed src="Images/Top banner.swf" width="684" height="70">
</embed>
</object>
</a>
 
Share this answer
 
Comments
pawanvats 5-Aug-11 9:21am    
yes , but it is not working sir

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