CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Thread: Secure website

  1. #1
    Join Date
    May 2000
    Posts
    30

    Secure website

    Hi,

    Does anyone know how to make a website secure? I want my page to have an lock icon at the bottom right of the browser.

    Thx,
    Alex

  2. #2
    Join Date
    Jun 2002
    Location
    Philadelphia, PA
    Posts
    85

    Re: Secure website

    Originally posted by Alex Ng
    Hi,

    Does anyone know how to make a website secure? I want my page to have an lock icon at the bottom right of the browser.

    Thx,
    Alex
    There's two steps..first you need to have people go to a secure server rather than just a stand webserver. Depending on your configuration, it can simply be done by going to https://www.YourWebsite.com. This runs on port 443(TCP) as opposed to port 80(TCP).

    Secondly, you should get a security cerificate to verify that you are who you are. If you're doing this as a small website for friends, it may not be necessary. However, if you want to run this as a production web-site and plan to sell anything, I highly suggest you purchase a cert from Verisign(http://www.Verisign.com) or another vendor.

    I hope this helps you out.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured