Ver Mensaje Individual
  #4 (permalink)  
Antiguo 19/06/2008, 12:49
pussy
 
Fecha de Ingreso: mayo-2008
Mensajes: 41
Antigüedad: 16 años, 10 meses
Puntos: 0
Respuesta: problema de permiso

gracia sabes ya configure el IIs y segui los paso uno a uno de Shiryu_Libra pero resulta que aun no puedo puede ser que tenga un erro pero, pero lo ke me parece raro es que no e modificado mi codigo y anteriormete podia ver mi pagina bueno si me puede ayuda mi codigo es:
<html><head><title>cpu.asp</title>
</head><body>
<input type="image" name="imageField" src="../logo2.bmp">
<br>
<h2><center>CPU</center></h2>
<%
Set conectar = Server.CreateObject("ADODB.Connection")
'conectar.Open "cobranza_sql"
conectar.open "DRIVER={Microsoft Access Driver (*.mdb)};DBQ=cobranza.mdb"
sql="Select * from I_cpu Order By serie"
set RS= conectar.Execute(sql)
%>
<table align ="center" border="1">
<tr>
<th width="80">Serie</th>
<th width="100">Nus</th>
<th width="100">Disco Duro </th>
<th width="100">Teclado</th>
<th width="100">Mouse</th>
<th width="68">Otros Dispositivo</th>
<th width="100">Descripcion</th>
<th width="100">Bio</th>
<th width="100">Red</th>
<th width="100">Direccion IP</th>
<th width="68">Mascara</th>
<th width="100">Procesador</th>
<th width="100">Memoria</th>
</tr>
<%
Do While Not RS.Eof
%>
<tr>
<td><%= RS("serie")%></td>
<td><%= RS("nus")%></td>
<td><%= RS("discoduro")%></td>
<td><%= RS("teclado")%></td>
<td><%= RS("mouse")%></td>
<td><%= RS("otros")%></td>
<td><%= RS("descripcionotros")%></td>
<td><%= RS("bio")%></td>
<td><%= RS("red")%></td>
<td><%= RS("direccionip")%></td>
<td><%= RS("mascara")%></td>
<td><%= RS("procesador")%></td>
<td><%= RS("memoria")%></td>
</tr>
<%
RS.MoveNext
Loop
conectar.Close
%>
</table>
<div align="center"></div>
<br />
<center><input type="button" name="imprimir" value="Imprimir" onClick="window.print();"></center>
</body></html>