Thanks butStill no luck, I have created a new DNN installation with 4.8.1 and set my "Horizontal Menu - Fixed Width.doctype.xml" skin doc type for my skin to
<SkinDocType><![CDATA[<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">]]></SkinDocType>
This code shows that AJAX is enabled and installed ok and I can see the correct doc type for the page in the source for the page.
protected void Page_Load(object sender, EventArgs
e){ if (DotNetNuke.Framework.AJAX
.IsEnabled())
{Label1.Text =
"Enabled";}
if (DotNetNuke.Framework.AJAX
.IsInstalled())
{Label2.Text =
"Installed";
DotNetNuke.Framework.AJAX.RegisterScriptManager();
DotNetNuke.Framework.AJAX.WrapUpdatePanelControl(Silverlight2, true
);
}
}
My control to display the content is
<%
<ContentTemplate>
<div style="
<asp:Silverlight ID="Silverlight2" runat="server"
Source="~/ClientBin/SLTest2.xap"
Version="2.0" Width="100%" Height="100%" ScaleMode="Stretch" OnPluginError="onSilverlightError" Enabled="true" EnableHtmlAccess="true" Visible="true" />
</div>
</ContentTemplate>
</asp:UpdatePanel>--
My SL content just shows a textblock
<
</
UserControl x:Class="SLTest2.Page"xmlns="http://schemas.microsoft.com/client/2007"xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"Width="400" Height="300"><Grid x:Name="LayoutRoot" Background="White"><TextBlock Text="Test"></TextBlock></Grid>UserControl>
--<asp:UpdatePanel ID="UpdatePanel1" runat="server">height:100%;width:100%">%><div align="left"><asp:Silverlight ID="Silverlight2" runat="server"Source="~/ClientBin/SLTest2.xap"Version="2.0" Width="100%" Height="100%" ScaleMode="Stretch" OnPluginError="onSilverlightError" Enabled="true" EnableHtmlAccess="true" Visible="true" /></div>
Still the content wont show in DNN, I have started testing the binding of the controls and doing xaml graphics with the new Expression Blend 2 preview, everything works in my test module solutions.
Can you post a complete installable module and source code so I can check my environment.
totally wrecked,
Alistair