Я бы хотел, чтобы IFrame отображался над моим элементом управления Silverlight (сверху вниз, а не по Z-порядку).
Если я помещаю элемент IFrame перед элементом Form, на моем экране появляется только IFrame.
Для воспроизведения создайте новое веб-приложение Silverlight 3.0.В вашем TestPage.aspx просто добавьте:
<iframe width="600" height="200" src="http://www.google.com" />
перед строками
<form id="form1" runat="server" style="height:50%">
<div id="silverlightControlHost">
<object data="data:application/x-silverlight-2," type="application/x-silverlight-2" width="100%" height="100%">
Мой полный тег тела читается как таковой ...
<body>
<iframe width="600" height="200" src="http://www.google.com" />
<form id="form1" runat="server" style="height:50%">
<div id="silverlightControlHost">
<object data="data:application/x-silverlight-2," type="application/x-silverlight-2" width="100%" height="100%">
<param name="source" value="ClientBin/SilverlightAndIFrame.xap"/>
<param name="onError" value="onSilverlightError" />
<param name="background" value="white" />
<param name="minRuntimeVersion" value="3.0.40818.0" />
<param name="autoUpgrade" value="true" />
<a href="http://go.microsoft.com/fwlink/?LinkID=149156&v=3.0.40818.0" style="text-decoration:none">
<img src="http://go.microsoft.com/fwlink/?LinkId=108181" alt="Get Microsoft Silverlight" style="border-style:none"/>
</a>
</object><iframe id="_sl_historyFrame" style="visibility:hidden;height:0px;width:0px;border:0px"></iframe></div>
</form>
К сожалению, появляется только IFrame.