MVC中 关于退出按钮的写法

public ActionResult Logoff()

{

Session.Abandon();

Session.Clear();

FormsAuthentication.SignOut();

return ReditectToAction("LonOn","Account");

}

上一篇:2.docker概述


下一篇:Android常见控件— — —TextView