[flexcoders] Flex form not passing a referrer header - IE only

2005-10-06 Thread pixelcowboys
We're submitting data to a servlet using a simple function:

var fname:String;
var lname:String;

function submitReg() { 
   fname = FirstName.text;
   lname = LastName.text;
   
   getURL(regServlet,_self, POST);
}

We noticed that the referer header is not being passed in IE,
resulting in submission errors. This works fine in Firefox. Can anyone
suggest a different way to do this, or has anyone experienced referer
header issues with Flex and IE?

Thanks!




 Yahoo! Groups Sponsor ~-- 
Most low income households are not online. Help bridge the digital divide today!
http://us.click.yahoo.com/cd_AJB/QnQLAA/TtwFAA/nhFolB/TM
~- 

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 






[flexcoders] HTML form replacement

2005-05-19 Thread pixelcowboys
This is probably a basic question for most of you, but I'll ask
anyway. What is the best method for simply replacing an existing HTML login 
form with a 
Flex one? 

I'm currently trying getURL on the submit action (but with no luck):

function submitLogin():Void { 
   var username:String = ;
   var password:String = ;
   getURL(theURL,_self,POST); 
}

The text input ID's are username and password. Any help/tips appreciated. 
Thanks!




 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/