Esempio n. 1
0
 /// <summary>
 /// 手机专线后台没权限输出
 /// </summary>
 /// <param name="permit">权限枚举</param>
 public static void MobileResponseNoPermit(EyouSoft.Model.EnumType.PrivsStructure.Privs permit)
 {
     HttpContext.Current.Response.Clear();
     HttpContext.Current.Response.Write("对不起,你没有”" + permit.ToString() + "“的权限!&nbsp;");
     HttpContext.Current.Response.Write("<a target='_top' href='/m/login.aspx'>跳转到登录页</a>&nbsp;");
     HttpContext.Current.Response.End();
 }
Esempio n. 2
0
 /// <summary>
 /// 专线后台没权限输出
 /// </summary>
 /// <param name="permit">权限枚举</param>
 /// <param name="isGoBack">是否输出返回上一页链接</param>
 public static void ResponseNoPermit(EyouSoft.Model.EnumType.PrivsStructure.Privs permit, bool isGoBack)
 {
     HttpContext.Current.Response.Clear();
     HttpContext.Current.Response.Write("对不起,你没有”" + permit.ToString() + "“的权限!&nbsp;");
     HttpContext.Current.Response.Write("<a target='_top' href='/login.aspx'>跳转到登录页</a>&nbsp;");
     if (isGoBack)
     {
         HttpContext.Current.Response.Write("<a href='javascript:void(0);' onclick='return history.go(-1);'>返回上一页</a>");
     }
     HttpContext.Current.Response.End();
 }