Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在 asp.net Web 服务中调用一个 Web 方法(job1),然后在这个 Web 方法中异步调用一个过程(job2)。作业 1 不必等待作业 2 完成。
最好的方法是什么?(.net 4.5)
使用 jquery ajax 函数调用 Web 服务的方法。
$.ajax({ url: "test.html", context: document.body, async: true });
默认情况下 async 为 true,这将异步调用方法。
要异步调用存储过程,请查看以下链接:
ADO.NET 异步 SQL 调用