我是ASP.NET的新手开发人员,我有一个.aspx视图文件,其中包含对.svc Service的Ajax请求。但是,如果我删除了此服务中的某些内容或更改了逻辑,则没有任何改变。
$.ajax({
type: "POST",
url: "/../Services/WebService.svc/ContactDirector",
data: *some data* }),
contentType: "application/json; charset=utf-8",
dataType: "json"
...
还有我的WebService.svc / ContactDirector
[OperationContract] public void ContactDirector(string FirstName, string LastName, string Email, string Phone, string HomeName, string Type, bool TermsAccepted)
{
*save new user to database*;
}
好像asp.net缓存了我的服务文件