I have a MVC application and I have to logout. To logout from the application I have created a link on te master page
[
if you're using forms authentication then this is what you are looking for...
public ActionResult LogOut() { Session.Clear(); FormsAuthentication.SignOut(); Redirect("http://AnotherApplicaton/Home/LogOut"); }
hth