19 lines
386 B
C#
19 lines
386 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using Song.Extend;
|
|
|
|
namespace Song.Site.Mobile
|
|
{
|
|
/// <summary>
|
|
/// 退出登录
|
|
/// </summary>
|
|
public class Logout : BasePage
|
|
{
|
|
protected override void InitPageTemplate(HttpContext context)
|
|
{
|
|
LoginState.Accounts.Logout();
|
|
}
|
|
}
|
|
} |