菜单隐藏在activeX控件后面

时间:2011-02-28 21:13:23

标签: asp-classic activex

我的经典ASP页面上有一个activeX控件。该页面还包含一个文件,其中包含一个包含工具栏代码的asp页面(只有HTML表格/ javascript)。

我发现当工具栏有一个下拉列表时,部分下拉列表会隐藏在activeX控件后面。

IE7 +

正在发生这种情况

有什么想法吗?

<div style="left:-25px; width:<%=xyz.xyz.webwidth%>; z-index:20;">
    <div align=left valign=top width="100%" style="background:<%=xyz.htmlcolor%>; border-left: <%=bordersize%>px solid <%=xyz.htmlcolorDark %>; border-right: <%=bordersize%>px solid <%=xyz.htmlcolorDark %>;" >
        <!--#include file="./includes/toolbar.asp"-->
    </div>
</div>

<OBJECT style="z-index:1;" CLASSID="clsid:5220cb21-c88d-11cf-b347-00aa00a28331" VIEWASTEXT>
    <PARAM NAME="LPKPath" VALUE="tx.lpk">
</OBJECT>
<!--TX Text Control -->
<OBJECT classid="clsid:3ce7a701-9bc2-11de-a4c1-0013d350667c" codebase="http://000.000.0.000/web/my.cab" id=objTX  style="width:<%=xyz.yyy.webwidth%>; height:625px; z-index:1">
    <PARAM NAME="ViewMode" VALUE="2">
    <PARAM NAME="ScrollBars" VALUE="3">
    <PARAM NAME="PageWidth" VALUE="12000">
    <PARAM NAME="PageHeight" VALUE="11520">
    <PARAM NAME="AllowDrop" VALUE="1">
    <PARAM NAME="AllowDrag" VALUE="1">
    <PARAM NAME="Text" VALUE="testing">
    <param name="FormatSelection" value="1">
</OBJECT>

我还在寻找答案...这是第三方ActiveX控件。我们正在为这个遗留项目使用经典ASP。

1 个答案:

答案 0 :(得分:1)

我不禁发表这个建议,因为我认为这已经在IE的更现代版本中得到了解决,但你尝试过任何旧的匀场技术吗?我记得要为IE 6和Dropdown选择框执行此操作。 This site有很好的教程。