@functions{ protected B_User buser = new B_User(); public M_OA_UserConfig ucMod = new M_OA_UserConfig(); public string GetUserID(int userID) { string result = ""; if (userID < 10) { result = "00" + userID; } else if (userID >= 10) { result = "0" + userID; } else { result = userID.ToString(); } return result; } } @{ M_UserInfo mu = ViewBag.mu; } @section head{ OA办公系统 } @section content{
@mu.UserName,欢迎回来!
关闭左栏
} @section script{ }