10/26/2010 9:13:26 AM
Title:
Pass value from Flash Textbox as querystring.
hi all,
i want to make a flash with a textinput and button.
on button click i want to redirect in an aspx or html page with textinput value as querystring like
search.aspx?query=textinput_value
can someone help me please.
10/27/2010 10:31:10 AM
on Button click you can call the following code to call a url and pass the querystring
var request:URLRequest = new URLRequest("http://www.mysite.com/a.aspx?var1=abc&var2=cde");
navigateToURL(request);