
que puedo hacer ???

| ||||
bueno intente colgarla en el server ya que lo estaba probando de manera local, entonces eso me aparece cuando la kiero cargar, no me muestra la pag y de manera local si ![]() The page cannot be found The page you are looking for might have been removed, had its name changed, or is temporarily unavailable. Please try the following: Make sure that the Web site address displayed in the address bar of your browser is spelled and formatted correctly. If you reached this page by clicking a link, contact the Web site administrator to alert them that the link is incorrectly formatted. Click the Back button to try another link. HTTP Error 404 - File or directory not found. Internet Information Services (IIS) ------------------------- |
| ||||
mi codigo:
Código:
y en la pag actualdb.asp tengo la parte donde actualiza la bd <body bgcolor="#000000" text="#000000" marginwidth="0" marginheight="0"> <table> <tr> <td width="100%"> <form action="actualbd.asp" method="post" name="stand" onsubmit="return formCheck(this);"> <table width="98%" border="0" cellspacing="5" cellpadding="5"> <tr> <td width="50%" valign="top" class="Estilo3"> <b>Escoge los stands que deseas cambiar su status a No disponible.</b> </td> </tr> <tr> <td> <% Dim conexion Dim rds Set conexion = Server.CreateObject("ADODB.Connection") conexion.Open "Vivienda" Set rds = Server.CreateObject("ADODB.Recordset") rds.ActiveConnection = conexion rds.Source = "SELECT * FROM stands" & " WHERE ocupado = 0" rds.CursorType = 2 rds.CursorLocation = 2 rds.LockType = 3 rds.Open Response.Write "<select multiple size=""15"" name=""combo"" >" Response.Write "<option value=""x"">Seleccione No. Stands </option>" Do While (NOT rds.EOF) id_stand = rds("stand") descripcion = rds("pabellon") Response.Write "<OPTION VALUE=""" & id_stand & """>" & " - " & descripcion & "</OPTION>" rds.MoveNext Loop Response.Write "</select>" on error resume next rds.Close Set rds = Nothing conexion.close Set conexion = Nothing %> </td> </tr> <TR> <TD><INPUT TYPE="SUBMIT" NAME="cmdEnviar" vALUE="Actualizar"></TD> </TR> </table> </form> </td> </tr> </table> |
| ||||
1. Estas segura que la forma viaja a la pagina correcta? 2. Puedes probar con FireFox? Necesitamos el error para saber cual es el problema... Salu2,
__________________ "El hombre que ha empezado a vivir seriamente por dentro, empieza a vivir más sencillamente por fuera." -- Ernest Hemingway |
| ||||
mmmhhhh...el servidor esta al aire? Tienes exactamente la misma estructura de directorios en local y en el server?
__________________ "El hombre que ha empezado a vivir seriamente por dentro, empieza a vivir más sencillamente por fuera." -- Ernest Hemingway |