Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie

Copyright sign chaning to a question mark

Options
  • 05-02-2007 3:25pm
    #1
    Registered Users Posts: 7,677 ✭✭✭


    I have a web page where the copyright sign is changing to a question mark sign even though the source displays the copyright sign.

    I am using asp.net

    can anyone help please


Comments

  • Registered Users Posts: 441 ✭✭robfitz


    The copyright symbol isn't always valid depending on character set encoding, you should be able to use © instead.


  • Registered Users Posts: 3,146 ✭✭✭oneweb


    You need to escape it using © because it's a special character.

    It is what it's.



  • Registered Users Posts: 3,146 ✭✭✭oneweb


    oneweb wrote:
    You need to escape it using © because it's a special character.
    ...the result of leaving extra windows open in the background. What robfitz said!

    It is what it's.



  • Registered Users Posts: 1,127 ✭✭✭smcelhinney


    Would also stress, if you want to be fully XHTML compliant, you probably need to use the HTML entity reference for © instead of this. Its not absolutely essential, but you may come across issues in the future if you use escape sequences that are not declared in the XHTML DTD.

    The HTML reference for copyright is & #169; (deliberate space.)

    See more on HTML Entity references here

    HTH
    Stephen


Advertisement