-
1. Re: Submitting variables to an ASPX file WITHOUT opening new window
kglad May 3, 2012 10:37 AM (in response to DTshults)is that pseudo-code? if not, there should be no cross-domain issue.
also, use "_self" in the send() method should not open a new window.
-
2. Re: Submitting variables to an ASPX file WITHOUT opening new window
DTshults May 3, 2012 11:30 AM (in response to kglad)Thanks for the reply-
That's the actual code, though not all of it. The sendAndLoad, for example, is actually inside an onRelease() for a button.
Also "_self" is still no good because it causes the current page to be redirected. I don't want any interuption of the page the flash is featured on at all.
-
3. Re: Submitting variables to an ASPX file WITHOUT opening new window
kglad May 3, 2012 12:07 PM (in response to DTshults)the code you showed does not call a cross-domain aspx file.
-
4. Re: Submitting variables to an ASPX file WITHOUT opening new window
DTshults May 3, 2012 12:09 PM (in response to kglad)Oh I'm sorry now I understand why you were asking. the "url.aspx" is not the actual URL. It will be a full url in the form http://www.domain/directory/file.aspx, which will indeed be on another domain.
Sorry for the confusion.
-
5. Re: Submitting variables to an ASPX file WITHOUT opening new window
kglad May 3, 2012 1:31 PM (in response to DTshults)1 person found this helpfulthen you'll need to use a local domain file to call your cross-domain file or you'll need to use a cross-domain master policy and possibly policy file.
-
6. Re: Submitting variables to an ASPX file WITHOUT opening new window
DTshults May 3, 2012 1:43 PM (in response to kglad)Thanks for the help! Fortunately this solution should work for my situation.
-
7. Re: Submitting variables to an ASPX file WITHOUT opening new window
kglad May 4, 2012 5:55 AM (in response to DTshults)you're welcome.