必须遗漏一些基本的东西。我在本地运行的aspx页面中从jquery调用webmethod时遇到404错误。
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="empJquery.aspx.cs" Inherits="webApiOracle.empJquery" %>
<!DOCTYPE html>
<html lang="en">
<head runat="server">
<title>jquery emps</title>
<script src="Scripts/jquery-1.10.2.min.js"></script>
<link href="../Content/bootstrap.min.css" rel="stylesheet" />
<script type="text/javascript">
$(document).ready(function () {
getEmployees();
});
function getEmployees() {
jQuery.ajax({
url: 'empJquery.aspx/Test',
type: "POST",
contentType: "application/json; charset=utf-8",
dataType: "json",
beforeSend: function () {
alert("Start!!! ");
},
success: function (data) {
alert("a");
},
error: function (msg) { alert("Sorry!!! "); }
});
}
</script>
然后在页面背后的代码中
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using webApiOracle.Models;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
namespace webApiOracle
{
public partial class empJquery : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
[System.Web.Services.WebMethod]
public static string Test()
{
return "Success";
}
}
}
每次运行时我都会收到404错误我尝试将url更改为/empJquery.aspx/Test我也尝试过localhost / empJQuery.aspx / Test和localhost:48784 / empJquery.aspx / Test但我可以&# 39;似乎得到它。我需要在网络配置中添加一些内容吗?我正在运行.net 4.5 感谢
答案 0 :(得分:8)
好的,我发现我的应用程序是一个混合的MVC
,Web API
,ASPX
解决方案,我的路线配置让我搞砸了,所以我不得不补充:
routes.IgnoreRoute("{page}.aspx/{*webmethod}");