有人知道是否可以使用 amf 远程处理从 flash 调用 asp.net mvc 操作?
如果是,如何?应该使用哪些技术以及如何将它们结合起来
在闪存方面,它会是这样的:
//Connect the NetConnection object
var netConnection: NetConnection = new NetConnection();
netConnection.connect("http://localhost:59147/Home/Index");
//Invoke a call
log("invoke call TestMethod");
var responder : Responder = new Responder( handleRemoteCallResult, handleRemoteCallFault);
netConnection.call('TestMethod', responder, "Test");
我试过了,它触发了动作,但我在请求中找不到任何软件的“TestMethod”和“Test”
谢谢你