views:

182

answers:

2

As title, any books, tutorials, site that you guys recommend to me on how could AS3 can communicate with ASP.net.

A: 

This site has many resources for integrating Flex (AS3) and .NET (ASP.NET). Let me know if this helps, thanks!

http://www.adobe.com/devnet/flex/flex%5Fnet.html

Luis B
A: 

These questions talk about similar issues:

http://stackoverflow.com/questions/971599/using-flash-with-asp-net-yay-or-nay http://stackoverflow.com/questions/229887/asp-net-and-flash-can-flash-talk-to-net http://stackoverflow.com/questions/1539780/integrating-flash-with-asp-net-web-applications

From my perspective, server should be client agnostic (if we're talking "applications"), so it's best to create an api between the two that is simple and generic (e.g, HTTP REST using JSON or XML for data, is one example). This way if your flex front-end doesn't work out, you can change to a silverlight or HTML front end without affecting the server.

So read up on Flash/Flex/AS3 for your client side. And read up ASP for your server. But there's no requirement that the two need to integrate in a tightly coupled way. If data transfer performance is absolutely critical, then you might want to look at some of the above links which talk about more specific integration with the server.

Glenn