Tagged Questions
3
votes
1answer
118 views
Code Review of AsyncPages in ASP.NET 2.0
Could somebody code-review the implementation of Async in ASP.NET 2.0 web form page below and let me know If I am missing something in implementing in a correct way?
AsyncPagesASPNET20.aspx
<%@ ...
2
votes
1answer
203 views
Asynchronous Programming Code Review
I did a load test for an ASP.NET MVC application. It was basically for 2 different pages which are doing the same thing but one was synchronous and the other was asynchronous. The result was shocking. ...
2
votes
1answer
1k views
Old-way of asynchronous programming in ASP.NET MVC 3
On ASP.NET MVC, I try to write an async Controller action with the old asynchronous programming model (actually, it is the current one, new one is still a CTP).
Here, I am trying to run 4 operations ...