tags:

views:

150

answers:

1

I have a text field, which holds the session value. Now while when i do logout operation.. clearing the text field does not work...

sessionHold.text = "";

The above code does not work, its not clearing the session value in the field.

appSes = event.result as Array 
var vinoth:String = String(appSes[0]);
Alert.show(vinoth);
sessionHold.text = appSes[1];

Now i am slightly confused....

A: 

why do you need to hold the session id inside a text field and not inside a String varialble ?!

Adrian Pirvulescu