rutaServidorActual = HttpContext.Current.Request.ServerVariables("HTTP_HOST")
If HttpContext.Current.Request.ServerVariables("HTTP_HOST").IndexOf("azure") > -1 Or True Then
' PRODUCCION
cnnSqlServer = New SqlConnection(ConfigurationManager.ConnectionStrings("GeneralConnectionString3").ConnectionString)
Else
' PRUEBAS en otro servidor SqlServer
cnnSqlServer = New SqlConnection(ConfigurationManager.ConnectionStrings("GeneralConnectionTest").ConnectionString)
End If