Question
Sent array from flash to array in asp
I send an array from flash to an asp page as follows:
_global.addToCart = _global.cartArray.toString();
getURL(" http://www.custombrackets.com/byb/flashmail.asp?addToCart="+_global.addToCart, "_self");
on the asp page i grab the array as follows
<%@ Language=VBScript %>
<%
Response.Buffer = true
Dim tempArray
tempArray = Request.QueryString("addToCart")
%>
I need a way to load the tempArray with the peices in the addToCart array from flash. So the tempArray(0) == addToCart(0), etc.
Thanks
Matt
_global.addToCart = _global.cartArray.toString();
getURL(" http://www.custombrackets.com/byb/flashmail.asp?addToCart="+_global.addToCart, "_self");
on the asp page i grab the array as follows
<%@ Language=VBScript %>
<%
Response.Buffer = true
Dim tempArray
tempArray = Request.QueryString("addToCart")
%>
I need a way to load the tempArray with the peices in the addToCart array from flash. So the tempArray(0) == addToCart(0), etc.
Thanks
Matt