PDA

Click to See Complete Forum and Search --> : Site Security


Randhart
Feb 13th, 2001, 11:30 PM
Hey guy's

How would i go about adding site security to me web page .. I'm new at this so bare with me.

Would I have to buy an application or is it somehting like a DLL that I have to implement?

In site security I mean .. Password authentication and maybe later on C-Card details.

Thanks in advance!

compuGEEK
Feb 14th, 2001, 12:14 PM
Hi!

Depends on what kind of site your running - ASP or straight HTML? With ASP you can validate user information against a database.

What kind of site is this?

Randhart
Feb 14th, 2001, 11:37 PM
Hey there

I'm running ASP and already validating users against a Database.

I want to do Encryption ... of the data sent over the lines .. what can i use for that?

Thanks for the help!

JoshT
Feb 15th, 2001, 07:00 AM
How about SSL (https on port 443)? You need to buy a certificate from someone like Verisign or Thawte. Then you need to set it up on the server (I believe IIS might have a wizard, or else check MSDN). Then user can access you site through https://www.yoursite.com/secure.asp and the data will be encrypted as it's sent.

Josh

compuGEEK
Feb 15th, 2001, 09:45 AM
Hi Randhart,

In ASP you can encrypt the querystring. Here is an article to get you started:

http://www.4guysfromrolla.com/webtech/012000-1.shtml


:)

Randhart
Feb 16th, 2001, 12:13 AM
Thanks Man

Cheers!