111,092
社区成员




public ActionResult UpdateComment(CommentModel C)
{
return Content(new BLL.Comment().UpdateComment(C));
}
public class CommentModel:PageModel
{
public int CommentID { get; set; }
public int ItemID { get; set; }
public int ItemType { get; set; }
public int UserID { get; set; }
public string Contents { get; set; }
public string CreateDate { get; set; }
}