Thanks for the suggestion Jamesqua, but I was not able to get it to work using <div> z-indexing.
However, the link that Darmark suggested was very helpful, and I was able to use their work-around solution to solve my problem. Since dropdownlists and listboxes are based on Windows form controls, they behave differently than other web controls. By using a second iframe (see below, id="CoverControls", no src=) I was able to cover the dropdownlists and then place my controls over this src-less iframe. The src for 'frameExcel' is set in the VB code.
Thanks again for the suggestions !
Dave
<
div id="ExportWindow" style="position:absolute; top:170; left:300; width:424" runat="server">
<div id="Div5" style="position:absolute; top:0; left:0; width:100%" runat="server">
<iframe id="CoverControls" height="253" width="100%" style="position:absolute; top:0; left:0; border-style:none" frameborder="no" runat="server"/>
<div id="Div1" style="position:absolute; top:2; left:0; width:100%" runat="server">
<iframe id="frameExcel" height="245" width="100%" style="position:absolute; top:0; left:0; border-style:ridge; border-width:2" frameborder="no" runat="server"/>
</div>
<div id="Div2" style="position:absolute; top:0; left:0; width:100%; overflow:hidden" runat="server">
<asp:Image ID="imgBar" ImageUrl="~/Images/BlueBar.jpg" runat="server" />
</div>
<div id="Div3" style="position:absolute; top:2; left:400" runat="server">
<asp:ImageButton ID="imgClose" ImageUrl="~/Images/BtnClose.jpg" style="cursor:hand" ToolTip="Close Window" runat="server" />
</div>
<div id="Div4" style="position:absolute; top:2; left:10" runat="server">
<asp:Label ID="lblTitle" Text="Export to Microsoft Excel" ForeColor="white" Font-Names="Arial" Font-Size="Smaller" Font-Bold="true" runat="server"/>
</div>
</div>
</
div>