Hi, Can we Use Next year Copyright in the Site. U see Site Footer have one Copyright link. like this CopyRight 2008. Can We use This Copyright 2008-2009 Thanks
Hy, I´m not really sure about this issue, but why the hell would you want to do such? Why don´t you just wait until next year? None the less, I don´t think that this will be a problem if you really want to. But you might at least own the license of ur domain until next year. Bye
Just use php to insert the current year, then you'll never have to worry about updating your (c). <? print date("Y"); ?> PHP:
If you want to display both this year and next year without ever changing it it changes it self --------------- Put this code where you want it Copyright © <?php print date("Y"); ?> - <?php echo date('Y') + 1; ?> PHP: This looks like this Copyright © 2008 - 2009 Demo: cynscriptz.com/urls.php
Honestly, just putting copyright 2008 doesn't mean much, depending on the sites content you would need a hell of a lot more to actually have a copyright stand up in court. For example a creative commons licence, or even more.
US Copyright Notice information -- copyright notice requirements and usage may vary considerably for other countries. If you are composing or updating a web page -- and the content is appropriate -- please give consideration to using a Creative Commons License instead of the usual Copyright claim notice. The concept of Creative Commons is to make (especially) scholarly and artistic online information readily and freely available while still protecting the originators intellectual property rights. Visit the following pages for in-depth explanations: Definition of Free Cultural Works Creative Commons (Licenses) Home page The following illustrate Creative Commons License usage: Creative Commons - Attribution 3.0 United States -- example of one type of Creative Commons license. Example of Creative Common License usage (on my Home Page) James
Ok well try this then this is a Dynamic Copyright for asp.NET <%@ Page Language="VB" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <script runat="server"> Function DynamicCopyright(ByVal YearSiteCreated As String) As String Dim DynamicCopyrightYear As String 'Is the current year equal to the year the site was created? If DateTime.Now.Year.ToString() <> YearSiteCreated Then 'If not then concatenate year created and current year DynamicCopyrightYear = YearSiteCreated & "-" & DateTime.Now.Year.ToString() Else DynamicCopyrightYear = YearSiteCreated End If Dim Copyright As String = "Copyright © " & DynamicCopyrightYear & ". All rights reserved." Return Copyright End Function Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) lblCopyright.Text = DynamicCopyright(2006) 'Use the created year as parameter End Sub </script> <html xmlns="http://www.w3.org/1999/xhtml" > <head runat="server"> <title>Dynamic Copyright</title> </head> <body> <asp:Label ID="lblCopyright" runat="server" /> </body> </html> Code (markup):