Click here to Skip to main content
15,885,366 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
in my Applicaition User name and Password is matched but not open after login not open other Page

What I have tried:

CREATE PROCEDURE usp_Users_VerifyingLogDetails
(
		@UserName NVARCHAR(50),
		@PassWord NVARCHAR(50)
)

AS

BEGIN

SELECT * FROM Users Where [UserName] = @UserName AND [Password] = @PassWord AND

IsActive = 1
END


using (SqlCommand cmd = new SqlCommand("usp_Users_VerifyingLogDetails", con))
                   {
                       cmd.CommandType = CommandType.StoredProcedure;

                       cmd.Parameters.AddWithValue("@UserName", txtLogUserName.Text.Trim());
                       cmd.Parameters.AddWithValue("@PassWord", SecureData.EncryptData(txtLogPassword.Text.Trim()));

                       if (con.State != ConnectionState.Open)
                          con.Open();

                       DataTable dt = new DataTable();
                       SqlDataReader sdr = cmd.ExecuteReader();
                       if (sdr.HasRows)
                       {
                           dt.Load(sdr);
                           DashboardForm dbf = new DashboardForm();
                           dbf.ShowDialog();
                       }
                       else
                       {
                           MessageBox.Show("User Name and Password Not Matched", "Authontication Error", MessageBoxButtons.OK,MessageBoxIcon.Error);
                       }
                   }
Posted
Updated 23-Jan-22 9:04am

We can' tell - it needs your code running with your database, and we don't have access to either.

So, it's going to be up to you.
Fortunately, you have a tool available to you which will help you find out what is going on: the debugger. If you don't know how to use it then a quick Google for "Visual Studio debugger" should give you the info you need.

Put a breakpoint on the first line in the function, and run your code through the debugger. Then look at your code, and at your data and work out what should happen manually. Then single step each line checking that what you expected to happen is exactly what did. When it isn't, that's when you have a problem, and you can back-track (or run it again and look more closely) to find out why.

Sorry, but we can't do that for you - time for you to learn a new (and very, very useful) skill: debugging!

But ... encrypting passwords is a bad idea. There is some information on how to do it here: Password Storage: How to do it.[^]

And remember: if this is web based and you have any European Union users then GDPR applies and that means you need to handle passwords as sensitive data and store them in a safe and secure manner. Text (even encrypted) is neither of those and the fines can be .... um ... outstanding. In December 2018 a German company received a relatively low fine of €20,000 for just that.
 
Share this answer
 
v2
apparently there is no issue with your code but you need to verify the followings:

Quote:
1. SecureData.EncryptData() method, Your table data is in Encrypted form
2. You're using the same key for Encryption/Decryption
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS
Top Experts
Last 24hrsThis month


CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900