Currently I use the following in the ASP.net C# code behind of my IFrame Facebook application:
Response.Redirect("Default.aspx");
Is there a better way to do this?
I heard of using
<fb:redirect url=\""/>
but if this is the correct way, how would I use it to navigate between pages in the root level of my ASP.net project? Please provide examples because I learn best from them.
Thank you.