Problema con el app.config

27/04/2005 - 21:22 por VKTOP | Informe spam
Hola amigos tengo el siguiente problema:
este es mi app.config:
<?xml version="1.0" encoding="utf-8" ?>

<configuration>

<appSettings>

<add Key="Conexion" value="Data Source=jrodriguez;Initial
Catalog=GMD_Desarrollo;User ID=sa;Password=" />

</appSettings>

</configuration>





Lo leo con lo siguiente :

Dim y As New Configuration.AppSettingsReader

Dim sConexion As String = x.GetValue("Conexion",
Type.GetType("System.String"))

pero me da un error me dice lo siguinte:

"Required attribute 'key' not found" ..line 4



que puede ser?

ya probe borrandolo y volviendo a crear el app.config.



saludos

Victor
 

Leer las respuestas

#1 A.Poblacion
27/04/2005 - 22:55 | Informe spam
"VKTOP" wrote in message
news:
Hola amigos tengo el siguiente problema:
este es mi app.config:
[...]
<add Key="Conexion" value="Data Source=jrodriguez;Initial
Catalog=GMD_Desarrollo;User ID=sa;Password=" />
[...]
pero me da un error me dice lo siguinte:
"Required attribute 'key' not found" ..line 4

que puede ser?




Has escrito Key con la K mayúscula, y tiene que ser minúscula.

Preguntas similares