protected void Page_Load(object sender, EventArgs e)
 {
     if (!IsPostBack)
     {
         proMod = proBll.SelReturnModel(DetailID);
         AuthCheck(proMod);
         Name.Text = proMod.Name;
         IsStatues.SelectedValue  = proMod.Status.ToString();
         StartDate.Text           = proMod.StartDate.ToString("yyyy/MM/dd");;
         EndDate.Text             = proMod.EndDate.ToString("yyyy/MM/dd");
         CUser_T.Text             = upBll.SelInfoByIDS(proMod.UserID.ToString());//需替换为头像与真名可切换显示的
         LeaderIDS_L.Text         = upBll.SelInfoByIDS(proMod.LeaderIDS.ToString());
         ParterIDS_L.Text         = upBll.SelInfoByIDS(proMod.ParterIDS.ToString());
         LeaderIDS_Hid.Value      = proMod.LeaderIDS;
         ParterIDS_Hid.Value      = proMod.ParterIDS;
         Describe.Text            = proMod.Desc;
         IsOpen_Rad.SelectedValue = proMod.IsOpen.ToString();
         ShowTaskFile();
     }
 }
        public string GetUName(string ids, int len)
        {
            string uname = upBll.SelInfoByIDS(ids);

            return(uname.Length > len?uname.Substring(0, len) + "..." : uname);
        }