Current Year Copyright Line in ASP - SnippetGood most recent 30 from http://snippetgood.com2010-07-29T23:52:46Zhttp://snippetgood.com/feeds/question/66http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://snippetgood.com/questions/66/current-year-copyright-line-in-aspCurrent Year Copyright Line in ASPbinky2009-10-11T01:50:35Z2010-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#68Answer by Snipper for Current Year Copyright Line in ASPSnipper2009-10-11T02:05:15Z2009-10-11T02:05:15Z<p>ASP - Display Current Year:</p>
<pre><code><%=DateTime.Now.Year%>
</code></pre>
<p>Many people use this for copyrite.</p>