我有在开发环境(我的机器)上工作的代码,但在 IIS6 上不起作用
我在 ASPX 页面中有一个方法,其足迹类似于:
[WebMethod()]
[ScriptMethod()]
public static string HelloWorld(string name)
{
return 'Hi '+name;
}
当我在浏览器上查看控制台时,我可以看到我的脚本调用了这个方法,尽管 IIS 返回了 404 not found。
该脚本对此 url 执行 http POST:http: //mydomain.com/myPage.aspx/HelloWorld
我猜它与 IIS 上的 mime 类型有关?