I am having trouble with user passwords containing Hash e.g. Son#1 and comparing with those in a database. It seems to only compare Son as it sees the next hash as end of the string.
<cfquery name="username_query" datasource="nitrogen">
Select *
From User
Where UserName Like '#UserName#' and Password Like '#Evaluate("Password"
#'
</cfquery>
Is there a way to compare the whole password?
Thanx
Richard
<cfquery name="username_query" datasource="nitrogen">
Select *
From User
Where UserName Like '#UserName#' and Password Like '#Evaluate("Password"
</cfquery>
Is there a way to compare the whole password?
Thanx
Richard