I am creating a facebook application using ASP.NET.
When the user click the browser refresh, the application is taken back to the home page. is there any way to refresh the page users are in.
for example when user launch application, user’s url is http://app.facebook.com/appname/default.aspx
when user clicks a button and moved to page2.aspx the url still remain the http://app.facebook.com/appname/default.aspx, so when user refresh the page it takes them to default.aspx, but I am looking for a way to take the users to page2.aspx.
Thanks
The best way I can think to do this is to store the user’s current page in a session, and if a refresh is detected, simply redirect them to that page. Not a whole lot else you can do about that, unfortunately, and most Facebook apps simply ignore the issue.