I have this model
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using System.Text;
namespace PrototypeHelp.Models
{
public class DocumentModel
{
public int documentID { get; set; }
public String Title { get; set; }
public DateTime DateCreated { get; set; }
public String Description { get; set; }
public int authorID { get; set; }
public String AuthorName { get; set; }
public int categoryID { get; set; }
public String Category { get; set; }
public int topicID { get; set; }
public String Topic { get; set; }
[AllowHtml]
public String DocumentBody { get; set; }
}
}
I would like to display only the date using jquery
but I cant get rid of the in "DateCreated".
Can anyone help me? I'm displaying it by using jquery