HTTPService does not load a page if that is what you are trying to do. Also, you may be confusing client functions with server function. I do not think the .net class is "embedded in your page". (Flex IS, running under the embedded FlashPlayer activex plugin) .net classes run server-side, and generate HTML the runs in a browser. If you have content that is generated by server-side aspx code that shares the browser with a Flex app, and you want the Flex app to be able to cause that server-generated xml to change, I think you will need to use navigateToURL() to actually reload the page. You can send parameters to the page using navigateToURL.
If the .net datagrid is actually built on the client somehow, in an activeX control or something, then you can communicate with it using ExternalInterface in Flex to run script in the browser. Tracy ________________________________ From: [email protected] [mailto:[EMAIL PROTECTED] On Behalf Of wmckensy Sent: Thursday, April 17, 2008 5:10 AM To: [email protected] Subject: [flexcoders] HTTPService Method="post" Hi I have an Flex app, consiting of a Filter for a datagrid generated by writer class in .NET enbeded in my page, so when i clik the filter options and i send them via httpservice with methoid= "post" it does actual submits the values i want, it does actual rewrite the contend but I does not reload my web page so the displayed contend is static. My question is: HOw can I do it makes a submit.post() when I call the HTTPService.send() that reloads my web so it can display the filtered contend? thanks in advance

