public string addchat() { string username2 = Request["username"].ToString().Trim(); string content = Request["content"].ToString().Trim(); return(member.AddChat(HttpContext.User.Identity.Name, username2, content)); }