1

我正在使用 MVC 应用程序来集成 Intuit Anywhere 和 MVC 应用程序。我看到蓝点菜单有一个服务器控件:

            <!-- Blue Dot Menu -->
            <div runat="server" id="blueDotDiv">
                <ipp:bluedot></ipp:bluedot>
            </div>

如何将此服务器控件集成到 MVC 站点中?

4

1 回答 1

3

有一个可用作参考的 Azure MVC Web 角色模板:

https://ipp.developer.intuit.com/0010_Intuit_Partner_Platform/0200_DevKits_for_Intuit_Partner_Platform/0300_Windows_Azure_Program_for_Intuit_Anywhere/0003_Intuit_Anywhere_Azure_Web_Role_Templates

在 ASP.NET WebForms 示例项目中包装蓝点菜单的 div 用于控制其在服务器端的可见性(当用户连接时隐藏),但您可以以任何方式实现隐藏控件。

单击按钮时,它会调用您在 intuit.ipp.anywhere.setup javascript 函数中指定的服务器端资源,该函数又会调用 AppMenu API 来检索菜单的内容:

https://ipp.developer.intuit.com/0010_Intuit_Partner_Platform/0025_Intuit_Anywhere/0020_Connect/0010_From_Within_Your_App/Add_the_Connect_Button

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

于 2013-02-01T13:31:36.307 回答