You can maintain session data with the aspx, so if the user logs in thru the .aspx form, you save some value with the session object, for instance, the user_id. The swf can query some .aspx the returns the user_id (or the data you like to store/retrieve), if it's present in the session data; so you can know from flash if the user has a valid credentials.
If the user logs in thru flash, you're going to make a call to the server anyway, so at that point you can store the session related data with the session object, thus being able to know from any .aspx page if the user is already logged in or not. Cheers Juan Pablo Califano 2008/5/16, ACE Flash <[EMAIL PROTECTED]>: > > Hi guys, I was trying to figure out how to get this done in flash. > for example; > > I had 2 pages on .net platform, the first page was regular aspx login page > that allows user to enter user name and password, they could click Login > button to login the system. > > After login, use could see page 2 which embedded flash application. how can > flash detect user has already been logged in status ( yes or no ) ? > > Can I save user login information in cookie locally once user login in the > system? ( this should be handled by .aspx ) > > Can I retrieve cookie information which created by .aspx in Flash? Is that > possible? > > Is there anyway can share user login status between .aspx and flash? > > * I know flash can create/retrieve SharedOject, > _______________________________________________ > Flashcoders mailing list > [email protected] > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders > _______________________________________________ Flashcoders mailing list [email protected] http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

