if somebody or anybody know how to pass value from asp.net to flash continuously with or without page refresh.
imp: Asp.net to flash 8 professional.
Not from flash to asp.net i am having lot samples in it.
asp.net to flashto pass value from asp.net to flash
Page 1 of 1
4 Replies - 4826 Views - Last Post: 14 July 2007 - 10:25 AM
Replies To: asp.net to flash
#2
Re: asp.net to flash
Posted 10 July 2007 - 12:12 PM
Is there any reason why you are creating multiple threads over and over??? Can you stop crossposting???
#3
Re: asp.net to flash
Posted 11 July 2007 - 11:13 AM
<FlashNewUser/>
To get information from asp.net to flash easily, you can use many things, like loadvars, flashvars, Web Services, or Flash Remoting, Fluorine Remoting, or webOrb remoting.
Essentially the same thing will happen though. For example, this is for a web service:
To get information from asp.net to flash easily, you can use many things, like loadvars, flashvars, Web Services, or Flash Remoting, Fluorine Remoting, or webOrb remoting.
Essentially the same thing will happen though. For example, this is for a web service:
var ws:WebService = new WebService();<-------------------------------------declare web service
ws.wsdl(wsdl url here); <---------------------------------------------------------load wsdl
ws.thisIsMyMethod.addEventListener(event:ResultEvent, onMyMethodResultHandler);<---------------this is the key, you add a listener for this event, so when you pass something, this listens for it.
ws.thisIsMyMethod();<-----------------------------------------------------------------------------------finally, call it if you want.
private function onMyMethodResultHandler(event:ResultEvent):void
{
var s:String = event.result as String; <------------------------------if the web service method returned a string or something.
}
#4
Re: asp.net to flash
Posted 12 July 2007 - 05:27 PM
Depending on what you're trying to accomplish, the XMLSocket class might work well.
2¢
2¢
#5
Re: asp.net to flash
Posted 14 July 2007 - 10:25 AM
try this website: http://neutron.sharpstyle.com/
Page 1 of 1
|
|

New Topic/Question
Reply



MultiQuote





|