Intuit合作伙伴平台(IPP)QuickBooks Online(QBO)BlueDot菜单ASPX页面无法在Internet Explorer(IE)中呈现

cep*_*att 4 asp.net internet-explorer infragistics quickbooks-online intuit-partner-platform

我有一个.aspx页面来显示BlueDot或ConnectToQuickBooks按钮.生成的HTML看起来像这样,从IE页面收集:

<!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>
    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
    <title>TrueCommerce to Intuit Connect Page</title>
    <script type="text/javascript" src="https://appcenter.intuit.com/Content/IA/intuit.ipp.anywhere.js"></script>
    <script type="text/javascript">
        intuit.ipp.anywhere.setup({
            menuProxy: 'http://localhost:1384/MenuProxy.aspx',
            grantUrl: 'http://localhost:1384/OauthGrant.aspx'
        });
    </script>
</head>
<body>

<div id="blueDotDiv">
    <ipp:bluedot></ipp:bluedot>
</div>

</body>
</html>
Run Code Online (Sandbox Code Playgroud)

此代码不会显示在IE中.它将在Chrome和Firefox中正常显示.

我使用W3C标记验证服务验证了HTML,并且只在标记上收到错误,这是预期的.

我使用以下IE浏览器
IE版本: 8.0.7601.17514 64位版本

我们正在使用Silverlight,并使用Infragistics HTML Viewer Control - Silverlight xamHtmlViewer嵌入了ASPX页面.从xamHtmlViewer内部调用或直接调用时,BlueDot菜单不会出现(尽管它在Chrome和Firefox中都有两种方式).

有任何想法吗?

Pet*_*lle 7

https://ipp.developer.intuit.com/0010_Intuit_Partner_Platform/0025_Intuit_Anywhere/0060_Reference/Widgets/0010_Connect_Button

要在IE8中显示"连接到QuickBooks"按钮,需要html xmlns属性,例如:

<html xmlns="http://www.w3.org/1999/xhtml" xmlns:ipp="">
Run Code Online (Sandbox Code Playgroud)