【问题标题】:How to call web method of master page?如何调用母版页的web方法?
【发布时间】:2016-03-07 17:34:51
【问题描述】:

Jquery/Javascript: 想要在 notification_count_span 淡出并返回 false 后调用 updateNotification() 函数。 web 方法在母版页中。

<script type="text/javascript" >
    $(document).ready(function () {
        $("#notificationLink").click(function () {
            $("#notificationContainer").fadeToggle(300);
            $("#notification_count_span").fadeOut("slow");
            return false;
            // updateNotification()
        });

        //Document Click
        $(document).click(function () {
            $("#notificationContainer").hide();
        });
    });
    function updateNotification() {
        $.ajax({
            type: "POST",
            url: "SiteMaster.master/UpdateNotification",
            data: '{nForId: "' + $("#<%=sessionUnameHf.ClientID%>")[0].value + '" }',
            contentType: "application/json; charset=utf-8",
            dataType: "json",
            success: function (msg) {
                //alert(msg.d)
                //do nothing
            }
        });
    }
</script>

HTML母版页中的 HTML 代码。

 <asp:Label ID="notification_count_lbl" runat="server" Text=""></asp:Label></span>
            <asp:LinkButton ID="notificationLink" runat="server">Notifications</asp:LinkButton>
<!--<a href="#" id="notificationLink1" runat="server" onclick="updateNotification()">Notifications</a>-->
<div id="notificationContainer">
<div id="notificationTitle">Notifications</div>
<div id="notificationsBody" class="Repeater">
    <asp:Repeater ID="Repeater1" runat="server" EnableViewState="true" onitemcommand="view">        
<ItemTemplate > 
    <p>
<tr>
<td><asp:Label ID="Label1" runat="server" CssClass="trHeader" Text='<%#Eval("NotificationTitle")%>'/></td>
    </tr></p><p><br />
<tr class="trMessage">
<td>
    <asp:LinkButton ID="nDescLbl" runat="server" CommandName="viewCase" Text='<%#Eval("NotificationDescription")%>' CssClass="trMessage"></asp:LinkButton>
    <asp:Label ID="Label2" runat="server" Text='<%#Eval("NotificationID")%>'></asp:Label>
    <asp:HiddenField ID="nIdHf" runat="server" Value='<%#Eval("NotificationID")%>'/>
</td>
    </tr></p><p><br />
<tr class="trFooter">
<td>
    <asp:Label ID="Label3" runat="server" CssClass="trFooter" Text='<%#Eval("NotificationDate")%>'/></td>
    </tr></p>
    <br />
    <hr style="color:darkgray;"/>
    </ItemTemplate>
    </asp:Repeater>
</div>
<div id="notificationFooter"><a href="Home.aspx" style="color:#006699;">See All</a></div>
</div>

WebMethod 母版页中的 webmethod。

[System.Web.Services.WebMethod]
public static string UpdateNotification(string nForId)
{
    string returnValue = string.Empty;
    try
    {
        using (SqlConnection connection = ConnectionManager.GetDatabaseConnection())
        {
            SqlCommand cmd = new SqlCommand("UpdateNotification", connection);
            cmd.CommandType = CommandType.StoredProcedure;
            cmd.Parameters.AddWithValue("@nForId", nForId);
            returnValue = cmd.ExecuteScalar().ToString();
            connection.Close();
        }
    }
    catch
    {
        returnValue = "error";
    }
    return returnValue;
}

【问题讨论】:

  • 那么问题是什么?你有什么例外吗?
  • 您不能从母版页调用 webmethod。
  • notification_count_span 淡出后如何调用update notification()?
  • @MairajAhmad 所以我必须在不同的类中创建网络方法?以及如何调用更新通知功能?
  • 是的,您需要在 aspx 页面中编写 webmethod。

标签: javascript jquery asp.net webmethod


【解决方案1】:

这是不可能的,因为 MasterPages 是 IIS 不会提供的服务器端资源,在您的 $.ajax 调用中引用了它。

如果您要求多个内容页面能够访问 WebMethod,请将您的代码移至 Web 服务 (ASMX)

// To allow this Web Service to be called from script, using ASP.NET AJAX, uncomment the following line. 
[System.Web.Script.Services.ScriptService]
public class SiteService: System.Web.Services.WebService
{
    [WebMethod]
    public static string UpdateNotification(string nForId)
    {
        string returnValue = string.Empty;
        try
        {
            using (SqlConnection connection = ConnectionManager.GetDatabaseConnection())
            {
                SqlCommand cmd = new SqlCommand("UpdateNotification", connection);
                cmd.CommandType = CommandType.StoredProcedure;
                cmd.Parameters.AddWithValue("@nForId", nForId);
                returnValue = cmd.ExecuteScalar().ToString();
                connection.Close();
            }
        }
        catch
        {
            returnValue = "error";
        }
        return returnValue;
    }
}
$.ajax({
    type: "POST",
    url: "SiteService.asmx/UpdateNotification",
    ...

如果#notificationLink的唯一目的是调用javascript,那么你可以摆脱服务器控制。

<a id="notificationLink">Notifications</a>
$("#notificationLink").click(function (e) {
    e.preventDefault();
    $("#notificationContainer").fadeToggle(300);
    $("#notification_count_span").fadeOut("slow");
    updateNotification();
});

阅读更多:event.preventDefault()

【讨论】:

  • 相反,我们可以使用 Web-API 来定义服务器端方法。并且可以从客户端脚本调用此方法。这会更容易,但必须进行一些额外的代码更改,例如在 Global.asax.cs 文件中设置路由。参考是webdevelopmenthelp.net/2014/05/…
  • 我建议您使用浏览器控制台检查错误并测试是否触发了点击事件。
  • .fadeToggle() 和 .fadeOut() 正在执行。
  • 您应该会看到 ajax 请求/响应,或者至少会看到一个错误,指出它找不到 updateNotification()。我不确定还有什么建议。对不起。
猜你喜欢
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2012-01-24
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
相关资源
最近更新 更多