?? lossinfreport.aspx.cs
字號:
?using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace 金利來分銷管理系統.Loss
{
public partial class LossInfReport : System.Web.UI.Page
{
BLL.Employee.EmployeeBll employeebllshow;
public LossInfReport()
{
employeebllshow = new BLL.Employee.EmployeeBll();
}
protected void Page_Load(object sender, EventArgs e)
{
//用戶權限
if (Session["employee_id"] == null)
{
Response.Write("請您登陸系統");
}
else
{
if (employeebllshow.UserRole(Session["role_id"].ToString(), "26") == false )
{
Response.Write("<script>alert('你無權查看此功能,請與管理員聯系');location.href='../Aboutus.aspx'</script>");
}
}
}
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -