-1

如何使用 asp MVC 4 添加 google +1 按钮并添加到 Internet 应用程序

4

2 回答 2

2

首先:https ://developers.google.com/+/plugins/+1button/

添加 Google +1 按钮与 MVC 4 本身没有太大关系,但潜在的实现如下所示:

在视图/局部视图中

<footer>
    <ul>
        <li>
            <div class="g-plusone" data-annotation="none"></div>
        </li>

        @* other buttons/links/whatever *@

    </ul>
</footer>

在View对应的_Layout.cshtml中

<script>
    (function() {
        var po = document.createElement( 'script' ); po.type = 'text/javascript'; po.async = true;
        po.src = 'https://apis.google.com/js/plusone.js';
        var s = document.getElementsByTagName( 'script' )[0]; s.parentNode.insertBefore( po, s );
    } )();
</script>

请注意,您可以有条件地加载此脚本,将其放在 a@section中,等等。

于 2012-08-09T20:51:13.793 回答
0

为此,首先您必须创建 opnID 身份验证密钥以获取更多信息,您可以查看此链接: http: //net.tutsplus.com/tutorials/building-an-asp-net-mvc4-application-with-ef-and- webapi/

于 2013-01-15T06:30:12.027 回答