Implementing long running search in ASP.NET
Posted
by Gursharn Singh
on Stack Overflow
See other posts from Stack Overflow
or by Gursharn Singh
Published on 2010-03-12T11:11:48Z
Indexed on
2010/03/12
11:17 UTC
Read the original article
Hit count: 214
I am building a search page in asp.net 3.5. Search takes a bit of time (few seconds to few minutes). Current I use AsyncMethodCaller to call Search method. AsyncMethodCaller method stores search results in Session. I user Ajax timer to check if Search method finished and then display results.
What would be the best way to implement this scenario?
© Stack Overflow or respective owner