Re: [flexcoders] ASP.NET .ashx handler - POST variables not working

2009-05-08 Thread Charles Parcell
Well, if you are POSTing from Flex and your ASP.NET is looking at the query string it will of course not find it. GET puts content in the query string. Either change how Flex is sending the data (change it to GET) or change how your ASP is looking for the data (look at the POST data). I am not fa

[flexcoders] ASP.NET .ashx handler - POST variables not working

2009-05-08 Thread Matthew A. Wilson
I created a web handler (.ashx) in ASP.NET and it takes 4 post variables, all strings. When I manually type in the URL with the variables (name=this&email=that&comments=this) it works fine, but when I try to POST those variables in an HTTPRequest in Flex, my web handler can't "see" the variabl