I am developing an asp.net web form application for Facebook iframe app. It contains two pages like List.aspx and View.aspx under same Master page.
I am using FacebookWebContext.Current.IsAuthenticated() method to check whether the user is logged in to Facebook. When the List page is loaded it [FacebookWebContext.Current.IsAuthenticated] returns true. When I navigate from List page to View page it returns false though i am connected to Facebook.
Even the Request.Params["signed_request"] is empty in View page.
Moreover this happens in IE. In FF, Chrome and Safari its working fine.
Help me to get rid of this issue.
Thanks.
Edited on 10 Jan 2012
I have used FacebookWebContext.Current.IsAuthenticated() in Facebook Iframe Application to check whether the user is logged to Facebook or not. This check I am doing in Master Page Load event. But this is returning false in IE even though the user is logged in Facebook. Any alternative approach to this..