本日志以一个silverlight播放器为实例
1)html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title></title>
</head>
<body>
<object data="data:application/x-silverlight-2," type="application/x-silverlight-2" width="400" height="300">
<param name="source" value="ClientBin/VideoPlayer.xap"/>
<param name="background" value="black" />
<param name="initParams" value="m=http://localhost:1808/ClientBin/成都全搜索小记者参观马士基和丹马士.wmv,autohide=false,autostart=true" />
<param name="minRuntimeVersion" value="2.0.31005.0" />
<param name="autoUpgrade" value="true" />
<a href="ClientBin/Silverlight.rar" style="text-decoration: none;">
<img src="ClientBin/InstallSilverlight.png" alt="下载Silverlight" style="border-style: none"/>
</a>
</object>
</body>
</html>
2)aspx
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="WebApplication5.WebForm1" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
<object data="data:application/x-silverlight-2," type="application/x-silverlight-2" width="400" height="300">
<param name="source" value="ClientBin/VideoPlayer.xap"/>
<param name="background" value="black" />
<param name="initParams" value="m=http://localhost:1808/ClientBin/成都全搜索小记者参观马士基和丹马士.wmv,autohide=false,autostart=true" />
<param name="minRuntimeVersion" value="2.0.31005.0" />
<param name="autoUpgrade" value="true" />
<a href="ClientBin/Silverlight.rar" style="text-decoration: none;">
<img src="ClientBin/InstallSilverlight.png" alt="下载Silverlight" style="border-style: none"/>
</a>
</object>
</div>
</form>
</body>
</html>