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.
我想捕捉服务器没有响应或超时错误。我PageMethods用于从 asp.net Web 应用程序中的 javascript 调用服务器端中的函数。有时服务器不会响应,所以当我从位于 aspx 文件中的 javascript调用PageMethods时,我想处理该服务器没有响应。
PageMethods
请做需要的,提前谢谢..
我认为一个简单的 try catch 可以解决您的问题
try { PageMethods.MyMethod(); } catch(exception){ //error occured } finally { //some tidying up }
javascript try catch 参考