Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8067489
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T12:18:59+00:00 2026-06-05T12:18:59+00:00

i have the table user_info created and with 2 username and password in it.

  • 0

i have the table user_info created and with 2 username and password in it.
When i execute the below code,it always goes into the “else” condition even if i type hte correct username and password.

protected void Login1_Authenticate(object sender, AuthenticateEventArgs e)
{
    string v = System.Configuration.ConfigurationManager.ConnectionStrings["harish"].ConnectionString;
    con = new OracleConnection(v);
    con.Open();

    cmd = new OracleCommand("select * from user_info where username='" + Login1.UserName.Trim() + "' and password='" + Login1.Password + "'", con);
    dr = cmd.ExecuteReader();
    dr.Read();
    if (dr.HasRows)
    {
        Response.Redirect("Default2.aspx");
    }
    else
    {
        Response.Redirect("Default.aspx");
    }


    con.Close();
    dr.Close();
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-05T12:19:01+00:00Added an answer on June 5, 2026 at 12:19 pm

    First things first, you should at a minimum be hashing the password. Also it’s best practice to not leave your connections at a class level. They should be created, opened, and closed when you use them. Same with commands, readers, etc…This can be done very easily with a using block.

    Next, ensure you are accessing the actual string values and not controls when using Login1.UserName and Login1.Password. If you’re using controls, you need to use Login1.UserName.Text.Trim() and Login1.Password.Text.Trim(). You can ensure this by storing the query you build into a local string value and seeing what’s actually built.

    Do not use the DataReader for what you are doing. Instead use the ExecuteScalar method:

    protected void Login1_Authenticate(object sender, AuthenticateEventArgs e)
    {
        string v = System.Configuration.ConfigurationManager.ConnectionStrings["harish"].ConnectionString;
        con = new OracleConnection(v);
        con.Open();
    
        cmd = new OracleCommand("select * from user_info where username='" + Login1.UserName.Trim() + "' and password='" + Login1.Password + "'", con);
        int count = Convert.ToInt32(cmd.ExecuteScalar());
        if (count > 0)
        {
            Response.Redirect("Default2.aspx");
        }
        else
        {
            Response.Redirect("Default.aspx");
        }
    
        con.Close();
    }
    

    Once you have this setup, put a breakpoint on the if (count > 0) line. Check your query that’s stored in the local var and check the count. This should give you all you need.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a schema that looks like this User Id INT Username VARCHAR(100) Password
I'm trying to setup code to check the username and password with values in
I have created 2 table messages and Conversation. Conversation table will create an unique
I have a table user and in addition INNER JOIN it with table cities
I have a table: **user** id, name, points Can you suggest me how to
I have a table (user) that contains user information. I have another table (userview)
I have this table: User id INT PK login VARCHAR UNIQUE I want to
I have a table User which has the fields (id, first_name, middle_name, last_name). I
I have a table User and another Person , a person is an user
I have a table with user items. Each user may have several types of

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.