ASP.NET Menu Problem With .swf file

2020-04-21 07:28发布

问题:

I have a drop down menu and a swf file on an asp.net page. When the menu drops down it is behind the swf file when it should appear in front.

回答1:

  1. Add the following parameter to the OBJECT tag:

    <param name="wmode" value="transparent">

  2. Add the following parameter to the EMBED tag:

    wmode="transparent"

(Taken from the Adobe site)



标签: asp.net flash