Hello
i am working on small blog system.
there is following database image :
www.freeimagehosting.net/uploads/218743366b.png
i want to get total number of article for the month of "MAY"
e.g. May(25)
here 25 is total number of articles in the month of "MAY" (like archive)
how to filter month from date???
so how can i get this number:
i have tried the following code to get the total number of article of the month.
IPredicateExpression filter = new PredicateExpression();
filter.Add(CmsArticlesFields.DtCreationDate="");
**in above "" what i have to write so i can get the month from this string
5/12/2009 5:09:07 PM**
CmsArticlesCollection col = new CmsArticlesCollection();
int i = (int)col.GetDbCount(filter);
can you please give me some example for this