Hiya!
I have a big problem. On my site I have a member area ppl can join and log in to but recently I found out that if you join with say the name 'Michelle' and there is already a 'michelle' in the database it would allow that but when it is verifying a log in its not case sensitive anymore and so it just looks for the first michelle. 
How do I change it so that its not case sensitive? So that it woudln't allow a michelle and a Michelle?
Here is the part of the script that creates a new user:
________________________________________________________
'Build connection
set conn = server.CreateObject ("ADODB.Connection")
conn.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=e:\home\Default\**********************"
set rs = server.CreateObject ("ADODB.Recordset")
'Open all records
rs.Open "SELECT * FROM admin", conn, 3, 3
'Check if username doesn't already exist
do while not rs.EOF
if rs("username")=username then
set rs=nothing
set conn=nothing
Response.Redirect("taken.asp")
end if
rs.MoveNext
loop
_________________________________________________________
Please help me!
Thanks so much for reading 
Loadsa love,
Vicky xxx