Hi All,<br>I am trying to write a program to change the User Password information. I am not getting any errore but the password change dosen't work. I mean new password is not updated in the database. Please suggest me if i am wrong with the code. <br><br><CFQUERY NAME="GetPassword" DATASOURCE="PostYourHome"><br> SELECT Password <br> FROM Sellers<br> WHERE Password='#Password#' and<br> UserName='%#Client.UserName#%'<br></CFQUERY><br><br><CFIF GetPassword.recordcount EQ 0><br> <br><CFQUERY NAME="DeleteOldPassword" DATASOURCE="PostYourHome"><br> Delete From Sellers<br> Where Password = '#Password#' and <br> UserName='%#Client.UserName#%'<br></CFQUERY><br><br><CFQUERY NAME="PutNewPassword" DATASOURCE="PostYourHome"><br> UPDATE Sellers<br> SET Password = '#NewPassword#'<br> Where UserName='%#Client.UserName#%'<br></CFQUERY><br> <br><cfoutput> Mr.#Client.UserName# Your Password is Updated. </cfoutput> <br></cfif><br><br>