By tag: asynchronous
0
kicks
How to know asynchronous postback raised in serverside code in ASP.NET
This is the nice tip to detect whether asynchronous postback caused or not. It will help to ASP.NET developers when working with ASP.NET Ajax framework in particular scenarios.
0
kicks
JavaScript Function Tips and Tricks
This article covers: In-line Functions, Function Overloading, and Calling Functions Asynchronously. Using these tips, you'll be able to write javascript functions that are more reusable and flexible.
0
kicks
Concurrent Affairs: Async additions to C#
My man-crush, Jeffrey Richter (of CLR Via C# fame) writes in the November issue of MSDN magazine about some of the recent additions to C# that makes the async programming model easier, plus other stuff.
0
kicks
Asyncify Your Code
Asyncify your code. Everybody's doing it. (Chicks|Dudes)'ll dig it. It'll make you cool. An opinion on .NET asynchronous patterns, a sample application exposing its own asynchronous API, and why you should be writing asynchronous code.
0
kicks
Working With Asynchronous WebRequests
Do you knowh how to handle multiple asynchronous WebRequests? Do you know why the obvious way doesn't work?
0
kicks
Scalable Apps with Asynchronous Programming in ASP.NET
In my opinion, one of the most unappreciated enhancements to ASP.NET 2.0 is the ease in which one can design their code to run asynchronously. In my experience, developers have blown off the idea in the beginning because of not realizing the true potential of asynchronous development in a web appli...
0
kicks
Asynchronous GridView in 5 simple steps
Let’s load the GridView asynchronous and make the page load faster and the perceived speed greater. All in 5 simple steps. This technique can be used with the Repeater, FormView, DataList and other controls.
0
kicks
AsyncWebService calls – the truth behind the Begin.. End.. Methods
Long story short, if you want to shotgun your webservice requests, make synchronous calls from worker threads and take the time to get that right.