@using System.Data @using ZoomLa.BLL @using ZoomLa.Common @model ZoomLaCMS.Control.C_SelUser @functions{ public string GetHeadIcon(DataRow dr) { string uface = DataConverter.CStr(dr["salt"]); if (string.IsNullOrEmpty(uface)) { uface = "/images/userface/noface.png"; } return uface; } } @{ } @foreach (DataRow dr in Model.r_dt.Rows) { if (Model.viewMode == "user") {
@B_User.GetUserName(dr["HoneyName"],dr["UserName"])
添加
} else if (Model.viewMode == "plat") {
@B_User.GetUserName(dr["TrueName"],dr["UserName"])
添加
} }