Ver Mensaje Individual
  #3 (permalink)  
Antiguo 11/10/2004, 12:53
JJM
 
Fecha de Ingreso: noviembre-2003
Mensajes: 77
Antigüedad: 21 años, 4 meses
Puntos: 0
Esos son los datos ya rectificados.

Si embargo coloco este Script y va como la seda

<%@ Import Namespace="System.Data.SqlClient" %>
<script runat="server">
Sub Page_Load(Src As Object, E As EventArgs)
If Not IsPostBack Then
DataBind()
End If
Dim tabla as SqlConnection
dim comando as SqlCommand
dim datos as SqlDataReader
tabla =New SqlConnection("Server=localhost;UID=sa;PWD=contras eña;database=Pubs")
tabla.Open()
comando= New SqlCommand ("Select fname From employee", tabla)
datos=comando.ExecuteReader()
...
tablaJuanjo.Close()
End Sub
</script>

Alguna idea..., alguien ha probado con Dreamweaver y le funciona?