[thelist] asp password login script - with only a password

Chris W. Parker cparker at swatgear.com
Fri Sep 20 15:09:46 CDT 2002


> -----Original Message-----
> From: Giles Carey [mailto:gilescarey at supanet.com]
> Sent: Sunday, September 08, 2002 10:19 AM
> To: thelist at lists.evolt.org
> Subject: [thelist] asp password login script - with only a password
>
>
> Any ideas? Resources?

yes. here is my idea. use just the password. and now here is some code.


(assuming the password has already been passed)

<%

	Dim usrPassword, sitePassword

	sitePassword = "x87rjehs81"
	usrPassword = Request("password")

	If(usrPassword = sitePassword) Then
		Response.Write("good job! the passwords match!")
	Else
		Response.Write("bad job! the passwords do not match!")
	End If
%>

there you go.


chris.



More information about the thelist mailing list