G
Guest
In an earlier thread (http://tinyurl.com/33horg) I learned that when session
is enabled on a web page, a second page method is blocked until the first one
is complete.
Is there any way around this limitation, besides disabling session at the
page level?
Defining a method like the following doesn't solve the problem because
session is already disabled by default for a page method:
[System.Web.Services.WebMethod(EnableSession=false)]
public static void WebMethod2()
{
System.Threading.Thread.Sleep(5000);
}
Thanks,
Roger Martin
Tech Info Systems / Gallery Server Pro
www.techinfosystems.com / www.galleryserverpro.com
is enabled on a web page, a second page method is blocked until the first one
is complete.
Is there any way around this limitation, besides disabling session at the
page level?
Defining a method like the following doesn't solve the problem because
session is already disabled by default for a page method:
[System.Web.Services.WebMethod(EnableSession=false)]
public static void WebMethod2()
{
System.Threading.Thread.Sleep(5000);
}
Thanks,
Roger Martin
Tech Info Systems / Gallery Server Pro
www.techinfosystems.com / www.galleryserverpro.com