DotNetShoutout - Stories tagged with Asynchronous
4
Shouts

Dean Hume - MVC Asynchronous Controller : The Basics

published 487 days, 1 hour, 3 minutes ago posted by deanomachinodeanomachino 491 days, 7 hours, 32 minutes ago
Saturday, January 21, 2012 4:46:53 PM GMT Tuesday, January 17, 2012 10:17:46 AM GMT
Coding Tips & TricksHomeAboutContactCV MVC Asynchronous Controller : The Basics Tweet When I first saw the Asynchronous Controllers introduced in MVC 2, I couldn't wait to start playing around. I thought that it would be a really easy to get up and running with a simple example, but after searching online for a few working examples - pretty much all of them used an event based pattern that wasn't easy to understand. In this blog post I am going to run through a really simple example that... (more)
category: Web Dev | clicked: 31 | comment | | source: deanhume.com
tags: MVC, Async Controller, Asynchronous
2
Shouts

Going Asynchronous

published 641 days, 9 hours, 52 minutes ago posted by KodefuGuruKodefuGuru 642 days, 3 hours, 23 minutes ago
Saturday, August 20, 2011 7:57:43 AM GMT Friday, August 19, 2011 2:26:34 PM GMT
In A Brief Introduction to Fundamental OOP, I built a small twitter application. It does the job well, but it has a very undesirable quality. When you click the search button, the application momentarily freezes as it waits for the Twitter service to respond. The application would feel a lot smoother if it allowed the user to continue using the application while the request is processed... (more)
category: How To | clicked: 9 | 1 comment | | source: www.kodefuguru.com
tags: Callback, Async, Asynchronous
6
Shouts

Asynchronous Programming in .NET – Part 2 - Coding N Design

published 919 days, 5 hours, 30 minutes ago posted by http://sankarsan.myopenid.com/http://sankarsan.myopenid.com/ 921 days, 12 hours, 29 minutes ago
Monday, November 15, 2010 12:19:44 PM GMT Saturday, November 13, 2010 5:20:35 AM GMT
In the last post we have discussed about the Asynchronous Programming Model(APM) and it’s different implementations.In this post we will discuss about the Event Based Asynchronous Pattern in .NET Framework which was introduced in .NET 2.0.This pattern makes use of the event/delegate model of the .NET Framework and is particularly useful for GUI based components.... (more)
category: How To | clicked: 0 | comment | | source: codingndesign.com
tags: .NET, Threading, Asynchronous
5
Shouts

Asynchronous Programming in .NET – Part 1 - Coding N Design

published 919 days, 5 hours, 30 minutes ago posted by http://sankarsan.myopenid.com/http://sankarsan.myopenid.com/ 921 days, 12 hours, 30 minutes ago
Monday, November 15, 2010 12:19:44 PM GMT Saturday, November 13, 2010 5:19:55 AM GMT
.NET Framework allows us to execute some methods asynchronously without blocking the calling program.These asynchronous methods are executed on different threads thus allowing the calling program to do it’s own job after the other method has been invoked.In this kind of asynchronous programming scenarios,in general we expect the following features to be implemen... (more)
category: How To | clicked: 0 | comment | | source: codingndesign.com
tags: .NET, Threading, Asynchronous
8
Shouts

Async Agents - Actor-Based Programming with the Asynchronous Agents Library

published 988 days, 16 hours, 25 minutes ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 993 days, 9 hours, 47 minutes ago
Tuesday, September 07, 2010 1:24:33 AM GMT Thursday, September 02, 2010 8:01:56 AM GMT
The agent model provides an effective method of hiding latency for efficient parallel execution. The Asynchronous Agents Library (AAL) lets you use this actor-based model with message-passing interfaces, and we’ll show you how it works. (more)
category: How To | clicked: 3 | comment | | source: msdn.microsoft.com
tags: MSDN, MSDN Magazine, Asynchronous
8
Shouts

Async Tasks - Simplify Asynchronous Programming with Tasks

published 988 days, 16 hours, 25 minutes ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 993 days, 9 hours, 50 minutes ago
Tuesday, September 07, 2010 1:24:33 AM GMT Thursday, September 02, 2010 7:59:26 AM GMT
Asynchronous programming lets you run expensive operations concurrently without blocking the UI thread. We’ll show you three simple techniques for implementing asynchronous operations in your code. (more)
category: How To | clicked: 1 | comment | | source: msdn.microsoft.com
tags: MSDN, Asynch, MSDN Magazine, Asynchronous
7
Shouts

Detect asynchronous postback in ASP.NET

published 1097 days, 5 hours, 27 minutes ago posted by PraveenPraveen 1100 days, 23 hours, 29 minutes ago
Friday, May 21, 2010 12:22:34 PM GMT Monday, May 17, 2010 6:20:51 PM GMT
Everyone need to know about this. When no Ajax implementation in ASP.NET [older versions] asp.net developers know about only one post back. That is full page postback. We have a property to detect it in c# code with Page.IsPostBack. But, day to day technology is growing and we need to know/follow everything up to date. This is not new one or I didn't find it just recent. All these posts are my experience and part of sharing information. Now a days everyone knows what is Ajax and how it will work. Every... (more)
category: Data | clicked: 0 | comment | | source: praveenbattula.blogspot.com
tags: C#, PostBack, Asynchronous, ASP.NET