Código
y al final me da el siguiente error
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Data.SqlClient; using System.Configuration; namespace Presentacion { class Clase_Personal { private SqlConnection conn; private SqlDataReader Reader; public bool ValidarUsuario(string usuario,string clave) { bool existe = false; int i = 0; conn = new SqlConnection(ConfigurationManager.ConnectionStrings["PROYFINAL901.Properties.Settings.Setting"].ToString()); { try { cmd.CommandType = CommandType.StoredProcedure; cmd.Connection.Open(); cmd.Parameters.AddWithValue("@USU", usuario); cmd.Parameters.AddWithValue("@Cla", clave); Reader = cmd.ExecuteReader(); while (Reader.Read()) { i++; } if (i >= 1) { existe = true; } else { existe = false; } } catch (Exception ex) { throw ex; } finally { Reader.Close(); cmd.Connection.Close(); } return existe; } } } }
" CommandType " no existe en el contexto actual.... Necesito saber a que se debe esto!
Mod: El titulo debe ser descriptivo, el código debe ir enetiquetas GeSHi, el problema debe ir en el subforo de su lenguaje especifico