h1.post-title { color:orange; font-family:verdana,Arial; font-weight:bold; padding-bottom:5px; text-shadow:#64665b 0px 1px 1px; font-size:32px; } -->

Pages

Get week number of the Day using C#

int noofweek = DateTime.Today.DayOfYear;
            noofweek = noofweek/7;
            MessageBox.Show(noofweek.ToString());