Hello Nancy,i have done something similar,it's better to define a variable that
takes the DateChooser value,i gave names to the DateChooser components for
example
_global.fromdate=_root.fromdate.selectedDate;
_global.todate=_root.todate.selectedDate;
then with if you use the LoadVars you can pass the values to a Asp script and
do the server side work,after that the Asp can give a response to the Flash
movie and the movie can do another procedure,i thing the easiest part is to
pass the user choices from Flash to the Asp...But you must examine the date
format that the Asp gets from Flash and after that you
can use queries to compare the data.
the following is part of a CDONTS script that gets the values from a
reservation form(Flash) and sends an email
dim fromDate,toDate
Request.Form("fromdate")&Request.Form("todate")
i hope that i gave you a little help about how to send data from Flash to an
Asp script
i used loadVariablesNum("nameofscript.asp","0","post"); to send the data to
the Asp
Paris
Nancy - Adobe Comm. Expert - 14 Sep 2007 05:11 GMT
Thanks so much, Paris ... what you have outlined looks like it might work ..
and then the ASP can take over. I'll give it a whirl and report back!
Thanks!
Nancy
> Hello Nancy,i have done something similar,it's better to define a variable
> that
[quoted text clipped - 30 lines]
>
> Paris