Ask a Question related to Macromedia Flex General Discussion, Design and Development.
-
evandroaraujo #1
QueryString with Flex
Hi, all...
I am try get querystring parameters of the one url (such as 'home.mxml?teste=1'), but I don't had succes...
Somedy can help me? What I should to do?!
Thanks,
Evandro
evandroaraujo Guest
-
QueryString Parameters
I am having a problem with one of the Dreamweaver embeded Server Behaviors. I have a search form that I input data into and then through the... -
ASP validation of Querystring
I am trying to filter the querystring from a e-commerce transaction. When I add this code my page crashes. What I am I missing? <% IF... -
URL (Querystring) Encode
Hi, I am working with VB. Does anyone know how to encode a set or querystrings using vb? For example: Unencoded:... -
Encryption for QueryString
hi guyz. I want to put encryption for every querystring for my web application. for that right now i m using a custom function. can any body... -
Crypto and querystring
Hello i'm looking for a sample encrypt and decrypt in asp.net who can be easily pass in url with querystring like : id=MLKJQSDF245KMDQLSFJ ... -
evandroaraujo #2
Re: QueryString with Flex
Hi, All...
I researched in the web and found the solution to my problem.
The following example defines the name and hometown variables and binds them
to the text of TextInput controls:
<mx:Application xmlns:mx="http://www.macromedia.com/2003/mxml" >
<mx:Script><![CDATA[
var name: String = "None"; // Set default value if none is passed.
var hometown: String = "None"; // Set default value if none is passed.
]]></mx:Script>
<mx:TextInput text="Name: {name}" />
<mx:TextInput text="Hometown: {hometown}" />
</mx:Application>
When a user requests this application with name and hometown parameters
defined, Flex displays them in the TextInput controls. The following URL passes
the name Reiner and the hometown Berlin to the Flex application:
[url]http://localhost:8100/flex/myApp.mxml?name=Reiner&hometown=Berlin[/url]
evandroaraujo Guest



Reply With Quote

