Current Year Copyright Line in ASP - SnippetGood most recent 30 from http://snippetgood.com 2010-07-29T23:52:46Z http://snippetgood.com/feeds/question/66 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://snippetgood.com/questions/66/current-year-copyright-line-in-asp Current Year Copyright Line in ASP binky 2009-10-11T01:50:35Z 2010-07-18T15:22:18Z <p>I was wondering what ways there are to have the current year in a copyright line. I don't like having to change it manually every year.</p> http://snippetgood.com/questions/66/current-year-copyright-line-in-asp/68#68 Answer by Snipper for Current Year Copyright Line in ASP Snipper 2009-10-11T02:05:15Z 2009-10-11T02:05:15Z <p>ASP - Display Current Year:</p> <pre><code>&lt;%=DateTime.Now.Year%&gt; </code></pre> <p>Many people use this for copyrite.</p>