page as:
<html><script src='xxx.appspot.com/zzz.js'></script></html>
server code as:
def get( self ):
Guser = users.get_current_user()
if not Guser:
self.response.out.write( "alert( 'failed.' );" )
else:
self.response.out.write( "alert( 'success.' );" )
IE always alert "failed." even after logging in to the app. firefox
and chrome can alert "success."
how can i fix this?
--
You received this message because you are subscribed to the Google Groups
"Google App Engine" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-appengine?hl=en.