ASP.NET Ajax Synchronous call

  • Thread starter Thread starter Jason
  • Start date Start date
J

Jason

Hello,

I am using ASP.NET Ajax on the web site I work on and I was just
wondering if anyone knows of a way to use the PageMethods to be
synchronous or to at lease be able to return a value instead of always
having to use the callback.

I can't think of any way to do it but I though maybe someone else may
know.

Thanks,

-Jason
 
not with the ajax toolkit. you could call XMLHttpRequest and loop on
readyState but you become compute bound.

-- bruce (sqlwork.com)
 
Back
Top