如何在 ASP.NET 中从 Flash 获取数据?
我想知道如何获取数据 来自我的 ASP.NET 应用程序中的 flash 文件?
I was wondering that how can i get data
from flash file in my ASP.NET application?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
ASP.NET 到 Flash:http://www.permadi.com/tutorial/flashVars/
Flash 到 ASP.NET:http://www.tek-tips.com/viewthread.cfm?qid=1223108&page=1
ASP.NET to Flash: http://www.permadi.com/tutorial/flashVars/
Flash to ASP.NET: http://www.tek-tips.com/viewthread.cfm?qid=1223108&page=1
您还可以使用名为 FluorineFX 的开源库来实现此目的。
它基本上是一个闪存远程网关,模仿 BlazeDS 的功能。
我还找到了一个基本的教程。
干杯
You could also use an open source library called FluorineFX for this.
It is basically a flash remoting gateway, which mimics the functionality of BlazeDS.
I also found a basic tutorial for this.
Cheers
大多数时候是相反的:
Flash 应用程序联系后端,发送数据,处理回复。
在最简单的形式中,您 POST/GET 带有几个 URL 参数的 dosomething.aspx 并让它更新你的存储空间。
It is most of the time the other way around:
Flash application contacts the back-end, and sends data, processes reply ..
In its simplest form, you POST/GET an dosomething.aspx with a couple of URL parameters and let it update your storage.