Calling multiple Page Methods in parallel
ASP.NET
1
Posts
1
Posters
0
Views
1
Watching
-
Hello All, We have the following scenario. 1. In code behind page I have defined two Page Methods. suppose Page Method 1 executes Add funtionality of two numbers. Page Method 2 executes Substraction functionality. 2. I want those two methods to execute at the same time in parallel. When the methods are called from JavaScript, they are called in sequential order. However, those two methods Add() and Subtract() should be called in parallel to improve the performance by getting the response quickly. Can you please shed some light on this and help us to solve this issue. Yours Raheem MA