all groups > flash actionscript > january 2004 >
You're in the

flash actionscript

group:

Using Flash with .NET?



Using Flash with .NET? rflo
1/22/2004 11:45:28 PM
flash actionscript: Hi, can someone show me how I can do the same thing that I'm doing with the example below with Flash and .NET (C# or VB). It is very easy with PHP, but I'm not quite sure how i works with .NET

Flash code:

var l:LoadVars = new LoadVars();
l.onLoad = function() {
trace(this.fullname);
}
l.firstname = "John";
l.sendAndLoad("info.php", l, "POST");


PHP code: (info.php)

<?

$name = $_POST['firstname'];

echo "fullname=".$name." Smith"


?>

Thanks!

Re: Using Flash with .NET? Mr Flash
1/23/2004 12:28:36 PM

[quoted text, click to view]
the example below with Flash and .NET (C# or VB). It is very easy with PHP,
but I'm not quite sure how i works with .NET

Look at the link below:
http://www.macromedia.com/devnet/mx/flash/activex.html

Your friends are activex and fscommand

Greetz,
Richard

AddThis Social Bookmark Button