所以我正在尝试向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.任何人都可以帮我吗?提前谢谢!
答案 0 :(得分:0)
问题已经解决了。错误是我的,我没有看到该按钮只是在显示消息之前刷新页面。
感谢您的注意!