This is the scenario : The user will go to mydomain.com with a smart phone or tablet
and mydomain.com will be redirected to facebook.com/mypage
It works but doesnt fire the Facebook app. I want Facebook app opens when user goes to my site.
If the user directly goes to facebook.com/mypage, It opens Facebook App. But why not with my redirection...
I have tried...
Response.Status = "301 Moved Permanently";
Response.AddHeader("Location", "http://www.facebook.com/mypage");
Response.End();
and
Response.BufferOutput = true;
Response.Redirect("http://www.facebook.com/mypage");
But none of the works. What can be the trick here?