hi all,

I need to implement functionality like how can i retrieve registered user's entered username and password for any website? and after that i want to save userid and password in some text,word file.

Any code/link is there then help me ASAP. help would be appreciated.

Thanks,
KK

Recommended Answers

All 4 Replies

I think you need to explain yourself better. Do you mean how to retrieve the login details from a database to confirm they are registered users? What do you mean by 'any website'? When you say you want to save it to a text file I can only guess you don't have access to the database where the information is stored, otherwise that would be irrelevant.

What have you tried?

First create a class file with access,oracle,or sql,
add data,data.sqlclient() namespace to the class and cs file both,
then add the following code in class file

{
public static bool match(string s)
        {
            //to match record or data
            SqlConnection con = new SqlConnection(@"Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|\Database.mdf;Integrated Security=True;User Instance=True");
            SqlCommand cmd = new SqlCommand(s, con);
            SqlDataAdapter adp = new SqlDataAdapter(cmd);
            DataSet ds = new DataSet();
            int a = 0;
            a=adp.Fill(ds);
            if (a == 0)
                return false;
            else
                return true;
}
        }

then in the cs file code the following:

 string str = "select * from voter_reg where uid='" + TextBox1.Text + "' and password='" + TextBox2.Text + "'";
            if (Class1.match(str) == true)
            {
                string str1= "select applicant_no from voter_reg where uid='" + TextBox1.Text + "'";
                Session["app_no"] = Class1.str(str1); 
                Response.Redirect("Default3.aspx?u=" + TextBox1.Text);
            }
            else
            {
                Response.Write("Invalid user id /password");

            }
        }

I have used the username as Applicant name in voter reg system,u can show it any text or label in the next page....

Hope u get it clear....

Mr krunalkakadia,

there is no code for anyone to get username and password of a person from any website unless you are some hacker or something. But there some access points to get access to the person id of his/her particular profile. e.g: email access. from here you can get users all contacts of friends but only if user insert by self the username & password.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.