4

我有一个.aspx页面来显示BlueDot或ConnectToQuickBooks按钮。 所得HTML看起来像这样,如从IE页收集:Intuit合作伙伴平台(IPP)QuickBooks Online(QBO)BlueDot菜单ASPX页面无法在Internet Explorer(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 Markup Validation Service验证了HTML,并且只在标签上收到了错误,这是预期的。

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

我们使用Silverlight和具有嵌入式利用Infragistics HTML Viewer Control - Silverlight xamHtmlViewer ASPX页面。当从xamHtmlViewer内部调用或直接调用BlueDot菜单时,不会出现(尽管它可以在Chrome和Firefox中双向运行)。

任何想法?

回答

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=""> 
+0

非常感谢您peterl。这是我的问题。我更新了所有的aspx页面。 – cepatt 2013-02-19 20:43:44

+0

由于我现在已经注意到了,你能否回头看看我之前的一个问题。我仍然有问题[选择所有未付发票](http://stackoverflow.com/questions/14323815/query-for-all-invoices-with-open-balances-using-quickbooks-online-qbo-intuit-p ) 先谢谢你。 – cepatt 2013-02-19 20:45:10

+0

我发布了该问题的更新代码。 – 2013-02-20 00:51:42

相关问题