45 lines
1.4 KiB
C#
45 lines
1.4 KiB
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Web;
|
|||
|
using System.Web.UI;
|
|||
|
using System.Web.UI.WebControls;
|
|||
|
|
|||
|
namespace FineUIPro.Web.FingerMark
|
|||
|
{
|
|||
|
public partial class UsingCheck : System.Web.UI.Page
|
|||
|
{
|
|||
|
protected string username = "";//接收用户名
|
|||
|
protected string userId = "";//接收用户ID
|
|||
|
protected void Page_Load(object sender, EventArgs e)
|
|||
|
{
|
|||
|
//string wederId = Request.Params["wederId"];
|
|||
|
//userId = wederId;
|
|||
|
//var weld = BLL.HJGL_PersonManageService.GetWelderByWenId(wederId);
|
|||
|
//if (weld != null)
|
|||
|
//{
|
|||
|
// username = weld.WED_Name;
|
|||
|
//}
|
|||
|
}
|
|||
|
|
|||
|
//public string ProjectList()
|
|||
|
//{
|
|||
|
// string currUser = ((Model.Sys_User)Session["CurrUser"]).UserId;
|
|||
|
// var projects = BLL.Base_ProjectService.GetProjectListByUserId(currUser, "2");
|
|||
|
// string ProjectArr = string.Empty;
|
|||
|
// if (projects.Count() > 0)
|
|||
|
// {
|
|||
|
// foreach (var p in projects)
|
|||
|
// {
|
|||
|
// ProjectArr = ProjectArr + p.ProjectId + "," + p.ProjectCode + "-" + p.ProjectName + "|";
|
|||
|
// }
|
|||
|
// }
|
|||
|
// if (ProjectArr.Length > 0)
|
|||
|
// {
|
|||
|
// ProjectArr = ProjectArr.Substring(0, ProjectArr.Length - 1);
|
|||
|
// }
|
|||
|
// return ProjectArr;
|
|||
|
//}
|
|||
|
|
|||
|
}
|
|||
|
}
|