主要有两种情况
1.当用的是asp:Silverlight 控件装载的页面时,这个直接添加子标签
<PluginNotInstalledTemplate>
这中间做你自己的操作 可以自己定义html,来美化自己的装载页面
</PluginNotInstalledTemplate>
2.当你用是用的object 控件来装载你的页面时
<div id="silverlightControlHost" style=" margin:0;height:100%;" >
<object data="data:application/x-silverlight-2," type="application/x-silverlight-2"
width="1001" height="100%" >
<param name="source" value="ClientBin/SilverlightIndex.xap" />
<param name="onerror" value="onSilverlightError" />
<param name="background" value="Black" />
<param name="minRuntimeVersion" value="2.0.31005.0" />
<param name="autoUpgrade" value="true" />
<param name="splashscreensource" value="SplashScreen.xaml" />
<param name="onSourceDownloadProgressChanged" value="onSourceDownloadProgressChanged" />
<param name="initparams" value="IP=127.0.0.1" />
//------------------------------
<a href="http://go.microsoft.com/fwlink/?LinkID=124807" style="text-decoration: none;">
<img src="SLIGHT.jpg" alt="获取 Microsoft Silverlight"
style="border-style: none" />
</a>
这一部分跟上面的一样也可以自己定义HTML页面,来美化页面
//--------------------------------------------
</object>