I have code which works on the dev environment (my machine), though doesn t work on IIS6
我在一个ASPX页面上有一个方法, 其脚印与这个相似:
[WebMethod()]
[ScriptMethod()]
public static string HelloWorld(string name)
{
return Hi +name;
}
当我看浏览器上的控制台时, 我可以看到我的脚本叫这个方法, 虽然 IS 返回一个404 找不到 。
The script does a http POST to this url: http://mydomain.com/myPage.aspx/HelloWorld
我猜这跟IIS上的MIME类型有关?