asp.net and flash? possible?
hi.
if i have created an asp.net website (with C# back code)... is it possible for a flash designer to use the code I have made?
so for example, in C# i may have a code to collect information about a user (so it takes the name, address details etc.. from the webform which has textboxes) and does some stuff with it, like email it or store it in SQL or whatever....
if a flash designer jazzes up the website UI and wants this "collect" details form to be jazzed up... would the asp.net webform/site still work?
finally, how do you integrate flash into asp.net? :)
thanks!
Re: asp.net and flash? possible?
You can integrate Flash into ASP.NET as easily as Flash into HTML as all ASP.NET does is generate HTML. I'm not aware of any controls that do all the work for you however.
I'm not an expert on Flash but I believe a Flash Form sends a HTTP response in exactly the same way as a HTML form and therefore you would be able to grab the data entered using the Request.Form or Request.QueryString objects.
HTH
DJ
Re: asp.net and flash? possible?