
28/09/2006, 11:57
|
| | Fecha de Ingreso: mayo-2006 Ubicación: chih. chihuahua, mexico
Mensajes: 113
Antigüedad: 19 años Puntos: 2 | |
ok ya supe como gracias por su tiempo a y aqui esta el codigo que utilize:
<%
Dim oConn, RS
Set oConn = Server.CreateObject ("ADODB.Connection")
oConn.Open "Provider=Microsoft.Jet.OLEDB.4.0; Data Source=" & Server.MapPath("noticias.mdb")&";"
Set RS = Server.CreateObject ("ADODB.RecordSet")
RS.Open "noticias", oConn, 1
RS.MoveLast
Response.Write RS("titulo") &"<BR>"
Response.Write RS("autor") &"<BR>"
Response.Write RS("noticia")
RS.Close
oConn.Close
Set RS = nothing
Set oConn = nothing
%> |