Hi,
i've done this method but it's print days in english and i want in italian. How can i make it? Thanks!
DateTime Base = new DateTime(DateTime.Now.Year, DateTime.Now.Month, 1);
int x = DateTime.DaysInMonth(Base.Year, Base.Month);
while (Base.Day != x)
{
Response.Write("Day : " + Base.DayOfWeek.ToString() + "<br>");
Base = Base.AddDays(1);
}