Click here to Skip to main content
15,917,642 members

Comments by Faysel Kedir (Top 5 by date)

Faysel Kedir 26-Dec-15 2:49am View    
Appreciate all the support and help from all of you, it meant a lot!
Faysel Kedir 25-Dec-15 13:14pm View    
thanks for the help bro,but i just tried the steps you suggested and it ain't working !
Faysel Kedir 23-Dec-15 9:37am View    
currently my code is leting the user to insert same email address again and again
Faysel Kedir 23-Dec-15 8:52am View    
Dear i want to validate whether given email address exists or not in the database.
Faysel Kedir 12-May-14 14:44pm View    
yes here is my sample code
SqlConnection con = new SqlConnection(ConfigurationManager.ConnectionStrings["PaperShareConnectionString"].ConnectionString);
con.Open();

SqlCommand educmd = new SqlCommand("select higher_education from Users where Username='" + user.ToString() + "'",con);
educmd.CommandType = CommandType.Text;

SqlDataReader eduDr = educmd.ExecuteReader();
while (eduDr.Read())
{
higher_edu = eduDr["higher_education"].ToString();
Response.Write(higher_edu.ToString());
}
con.Close();

con.Open();
SqlCommand sqlCmd = new SqlCommand("select Username,first_name,last_name,sex from Users Where higher_education='"+higher_edu.ToString()+"'", con);
sqlCmd.CommandType = CommandType.Text;

SqlDataReader dr = sqlCmd.ExecuteReader();
while (dr.Read())
{
lblUsername.InnerText = dr["Username"].ToString();
lblFullname.InnerText= dr["first_name"].ToString() + dr["last_name"].ToString();
Response.Write(lblFullname.InnerText);
}

}