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

相關問題