How to enter copyright?

Hi all
I have launched my new web site :slight_smile:
I want to insert like this"Copyright ©2000 - 2011, "
how to insert this with the help of JavaScript?
I have tried but web page shows
" [an error occurred while processing this directive] "
Can you help me to avoid this error?

Maybe you can show the javascript you used. Another way of doing this is to use server side scripting (PHP, ASP, Coldfusion etc…)

The text you want to insert written in HTML and JavaScript would be:

"Copyright ©2000 - "+today.getFullYear();

assuming you have already defined today using:

var today = new Date();

It would still be better to do it using a server side language though so that more people will see it.