How to add current copyright year in ASP.NET

Category > ASP.NET || Published on : Monday, January 25, 2016 || Views: 7539 || add current copyright year in ASP.NET


Introduction

Here Pawan Kumar will explain how to add current copyright year in ASP.NET

Description

In previous post I have explained How to compress response in asp.net with example, How to display progress indicator during ajax call in asp.net using jQuery, How to rotating image with ASP.NET 4.0 and C# with example, How to turn off submit button when it pressed in ASP.Net, Code Snippets - Sending SMS through ASP.NET, Cascading dropdown in ASP.NET using JQuery Http Handler, and many more articles.

Now I will explain How to How to add current copyright year in ASP.NET

So follow the steps to learn How to add current copyright year in ASP.NET

Simply you have to add the below lines in aspx page.

 <p>
                    &copy;
                    <%: DateTime.Now.Year %>
                    - All Rights Reserved
                </p>

 

Conclusion:

So, In this tutorial we have learned, How to add current copyright year in ASP.NET