asynccontroller
MVC3 - using AsyncController to prepopulate ObjectCache from database
I have a form that searches via AJAX against two different data sources.The data is relatively small but the speed at which it returns is slow.[详细]
2023-04-04 23:37 分类:问答ASP.NET MVC AsyncController continue browsing while waiting
I want to use jQuery ajaxForm to post data to an AsyncController to fire off some task. I want the user to be able to continue browsing to other pages while this task completes. I then want to display[详细]
2023-03-31 12:45 分类:问答How does AsyncController avoid using an ASP.NET worker thread?
How exactly does AsyncController avoid using an ASP.NET worker thread? If I use the event-based pattern (pseudo-code):[详细]
2023-03-25 07:11 分类:问答AsyncController: Interference having 2 async methods
i\'m having an AsyncController that has 2 AsyncMethods. One is called GetMessages, the other Check. It seems, that one call blocks the other, probably because both call this.AsyncManager.OutstandingOp[详细]
2023-03-18 03:30 分类:问答Can I use async controllers in the following scenario?
I have an application in Asp.net MVC where at some point I would like to display a modal dialog to the user that would display process execution progress indicator.[详细]
2023-03-17 05:14 分类:问答Async operation completes, but result is not send to browser
I want to implement a webchat. The backend is a dual WCF channel. Dual channel works in the console or winforms,[详细]
2023-03-16 19:24 分类:问答asynccontrols asp.net Error Creating Control " Object reference not set to an instance of an object"
here is my sample form. I\'m using asynccontrols . Site compiles fine, loads fine, works fine. Can\'t view anything in designer. Halp?[详细]
2023-03-03 04:46 分类:问答T4MVC AsyncController
I\'ve recently installed T4MVC using Nuget.I had an old version before this that worked fine, however I had a new requirement that needed an asynchronous controller.After creating the asynchronous con[详细]
2023-02-19 05:47 分类:问答How to write tests for ASP.NET MVC 3 AsyncControllers with MSpec
I want to write a TaskController for an ASP.NET MVC 3 application to some long running tasks, like sending a newsletter to the users of the site. I thought using an AsyncController would be appropriat[详细]
2023-02-16 03:46 分类:问答ASP.NET MVC2 Can AsyncController access HttpContext.Current?
I\'m trying to convert this method ExportTo3rdParty() to use an AsyncController: public JsonResult SaveSalesInvoice(SalesInvoice invoice)[详细]
2023-02-11 23:21 分类:问答