0

所以我正在尝试对WebMethod(ASP .NET C#)进行 AJAX 请求。我查看了许多主题以解决我的问题,但我找不到任何东西。

这是我当前的代码:

<script type="text/javascript">

        function mostrarMensaje() {
            $.ajax({
                type: "POST",
                url: "index.aspx/devolverMensaje",
                data: "{}",
                contentType: "application/json; charset=utf-8",
                dataType: "json",
                success: 
                    function (msg) {
                        alert('El mensaje devuelto por el servidor es: ' + msg);
                    },
                error:
                    function (msg) {
                        alert(msg.status + " " + msg.statusText);
                    }
            });
        }
</script>

这就是我的 WebMethod:

namespace Test
{
    public partial class Formulario_web1 : System.Web.UI.Page
    {

        protected void Page_Load(object sender, EventArgs e)
        {

        }

        [WebMethod()]
        [ScriptMethod(ResponseFormat = ResponseFormat.Json)]
        public static String devolverMensaje() {
            return "pepe";
        }
    }
}

响应状态为 0。任何人都可以帮助我吗?提前致谢!

4

1 回答 1

0

问题已经解决了。错误是我没有看到该按钮只是在显示消息之前刷新页面。

感谢关注!

于 2013-07-08T16:01:42.070 回答