4

我有一个 .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>

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

我使用W3C 标记验证服务验证了 HTML,并且只收到了标签上的错误,这是意料之中的。

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

我们正在使用 Silverlight 并使用Infragistics HTML 查看器控件 - Silverlight xamHtmlViewer嵌入了 ASPX 页面。从 xamHtmlViewer 内部调用或直接调用时,BlueDot 菜单不会出现(尽管它在 Chrome 和 Firefox 中都适用)。

有任何想法吗?

4

1 回答 1

7

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

要在 IE8 中显示 Connect to QuickBooks 按钮,需要 html xmlns 属性,例如:

<html xmlns="http://www.w3.org/1999/xhtml" xmlns:ipp="">
于 2013-02-19T20:39:04.403 回答