Código
SELECT [strIdentificacion], [strNombre], [strApellido] FROM [Knowledge].[dbo].[tblUsuario]
Ahora cuales son las posibles opciones para ejecutar y recuperar el resultado de la consulta dentro de Aspx.NET
Opción 1:
Código
strCmd = New SqlCommand(strSql, strcnn) strDr = strCmd.ExecuteReader If strSqlDataReader.Read Then txtIdentificacion.Text = strSqlDataReader("strIdentificacion").ToString() txtNombre.Text = strSqlDataReader("strNombre").ToString() txtApellido.Text = strSqlDataReader("strApellido").ToString() End If