<system.webServer>
<modules>
<add name="UrlRoutingModule" type="FD.Service.UrlRoutingModule,FD.Service"/>
</modules>
</system.webServer>
[FdService]
public class SchoolApi
{
[FdMethod]
public static string GetTeacherName()
{
return "Odin";
}
}$.get("/api/SchoolApi/GetTeacherName/", null, function (data) {
$("#textDetail").append("GetTeacherName: " + data);
});