22 lines
486 B
C#
22 lines
486 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.UI;
|
|
using System.Web.UI.WebControls;
|
|
|
|
public partial class BackEnd_users_management : webBase
|
|
{
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
string[] PermArray = {
|
|
"A",
|
|
"P"
|
|
};
|
|
|
|
if (PermArray.Contains(objAuth.user_perm) == false)
|
|
{
|
|
Response.Redirect("projects-management.aspx");
|
|
}
|
|
}
|
|
} |