silverlight与asp集成无法正常工作

时间:2012-03-02 19:20:20

标签: asp.net c#-4.0 silverlight-4.0

我在这种情况下遇到此问题: 1-I用webapplication创建了一个新的silverlight项目,主持了silverlight项目。 2-当单独尝试Silverlight项目时,它运行良好,没有错误。 3 - 但在尝试'silverlighttestpage.aspx'时,浏览器会打开并显示一个白页。然后会出现一个银色加载圆圈,达到100%后无显示任何内容。

所以,请你帮助我,我是silverlight和asp的新手,顺便说一句,我安装了silverlight 4 sdk。

这是html: ``

<div id="silverlightControlHost">
    <object data="data:application/x-silverlight-2," type="application/x-silverlight-2" width="100%" height="100%">
      <param name="source" value="ClientBin/silverlighttest3.xap"/>
      <param name="onError" value="onSilverlightError" />
      <param name="background" value="white" />
      <param name="minRuntimeVersion" value="4.0.50826.0" />
      <param name="autoUpgrade" value="true" />
      <a href="http://go.microsoft.com/fwlink/?LinkID=149156&v=4.0.50826.0" style="text-decoration:none">
          <img src="http://go.microsoft.com/fwlink/?LinkId=161376" 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>

和像这样的silverlight项目:

<UserControl x:Class="silverlighttest3.MainPage"
  ....

    <Grid x:Name="LayoutRoot" Background="blue" Height="507" Width="842" HorizontalAlignment="Stretch">
        <MultiScaleImage HorizontalAlignment="Left" Margin="146,27,0,0" Name="multiScaleImage1" VerticalAlignment="Top" Source="Source/dzc_output.xml"/>
    </Grid>
</UserControl>

1 个答案:

答案 0 :(得分:0)

您的主视图中是否有任何可区分的内容?你可以在你的测试页面上发布你的HTML吗?

为您的Silverlight主视图提供背景颜色(白色除外),并确保它不仅仅是与空白测试页的白色背景混合。

<UserControl x:Class="SilverlightApplication2.MainPage"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d"
    d:DesignHeight="300" d:DesignWidth="400">

    <Grid x:Name="LayoutRoot" Background="Blue">

    </Grid>
</UserControl>