Click to See Complete Forum and Search --> : Flash to ASP.NET 2.0


centrationinc
01-18-2008, 01:53 PM
Is it possible to make a login script in Flash using actionscript and then output the results into a ASP.NET variable or array? The reason im asking is because i want the homepage for our new website to be flash and then move it to the ASP.NET application. I do not know ASP.NET 2.0 but we have a full time ASP.NET developer on staff. I am just the designer. I know its possible for PHP to do it but for ASP I am not sure. If you could let me know how or send me to a website where i could find out i would appreciate it greatly. Thank you in advance.

TheBearMay
01-18-2008, 02:17 PM
Should be the same process for ASP.Net as for PHP, you'll have to return control to the server with the variable in the POST or GET header.


BTW - Please don't Cross Post, the other thread has been closed.

centrationinc
01-18-2008, 02:28 PM
Oh ok sorry I apologize... just wanted to make sure it got seen by the right set of eyes.

So pretty much I just put inside the actionscript that it needs to go to the ASP.NET page? Because right now we have a login.aspx page that shows the login form.....

this is an example of our form i believe

<asp:TextBox id="username" runat="server" Width="190px" CssClass="formtext"></asp:TextBox>

basically just a textbox..... but as long as I echo this out in Flash Actionscript it should show up right? i would also make sure to add the <form> tag before that and add the runat="server" section to it also.