Esempio n. 1
0
 public ActionResult Tags()
 {
     ViewBag.Title = "个人标签设置";
     if (currentUser != null)
     {
         YSWL.MALL.BLL.SNS.Tags          bTags    = new Tags();
         YSWL.MALL.BLL.SNS.TagType       bTagType = new TagType();
         List <YSWL.MALL.Model.SNS.Tags> list     = bTags.GetModelList("TypeId=" + bTagType.GetTagsTypeId("用户标签") + "");
         Model.Members.UsersExpModel     model    = bllUE.GetUsersModel(CurrentUser.UserID);
         ViewBag.UserTags = model.Remark;
         return(View(list));
     }
     return(new EmptyResult());
 }