Me podéis ayudar???

17/08/2005 - 16:55 por pesave | Informe spam
Quiero situar en internet una base de datos hecha en Access para que se
puedan introducir datos, etc. ¿¿¿Cómo lo puedo hacer???. La base de datos
está ya hecha. Gracias.

Preguntas similare

Leer las respuestas

#1 Manuel Vera
17/08/2005 - 23:41 | Informe spam
1. Debes tener un espacio en algún servidor web, el cual debe permitir que
se ejecuten scripts como páginas ASP (que es lo que se usa en este foro).
2. Luego, para subir la BD, deberás usar algún programa que te permita hacer
FTP al servidor web. Para eso debes contar con la combinación usuario/clave,
que te de acceso al servidor a través de FTP. El programa de FTP hay muchos:
WS_FTP, CuteFTP, etc. Más fácil, usa el propio Internet Explorer colocando
como dirección web: ftp://www.tuservidor.com.
3. El archivo de BD deberás colocarlo en una carpeta distinta a donde
colocar tus ASP, por lo general, la carpeta DATA. Consulta en tu servidor
web cual es la carpeta asignada para tal fin: lectura/escritura de archivos.

Salu2
MV

"Pedro" wrote in message
news:
Quiero situar en internet una base de datos hecha en Access para que se
puedan introducir datos, etc. ¿¿¿Cómo lo puedo hacer???. La base de datos
está ya hecha. Gracias.

Respuesta Responder a este mensaje
#2 pesave
18/08/2005 - 00:34 | Informe spam
Gracias por tu ayuda. Pero qué trengo que hacer en ASP y cómo??? Gracias.


Manuel Vera wrote:

1. Debes tener un espacio en algún servidor web, el cual debe permitir que
se ejecuten scripts como páginas ASP (que es lo que se usa en este foro).
2. Luego, para subir la BD, deberás usar algún programa que te permita hacer
FTP al servidor web. Para eso debes contar con la combinación usuario/clave,
que te de acceso al servidor a través de FTP. El programa de FTP hay muchos:
WS_FTP, CuteFTP, etc. Más fácil, usa el propio Internet Explorer colocando
como dirección web: ftp://www.tuservidor.com.
3. El archivo de BD deberás colocarlo en una carpeta distinta a donde
colocar tus ASP, por lo general, la carpeta DATA. Consulta en tu servidor
web cual es la carpeta asignada para tal fin: lectura/escritura de archivos.

Salu2
MV

"Pedro" wrote in message
news:
> Quiero situar en internet una base de datos hecha en Access para que se
> puedan introducir datos, etc. ¿¿¿Cómo lo puedo hacer???. La base de datos
> está ya hecha. Gracias.
>
Respuesta Responder a este mensaje
#3 Manuel Vera
18/08/2005 - 01:12 | Informe spam
Intenta en tu internet explorer colocar esto a ver si funciona:
http://localhost/iishelp/
Tambien puedes buscar en:
www.apsfacil.com
www.soloasp.com
Acerca de ADO (Activex Data Object)

Sacado del help de Personal Web Server:

VBScript Version

The following is the same example written in VBScript to be used in an
Active Server Page (ASP). To view this example, you need to create a system
Data Source Name (DSN) called AdvWorks for the Microsoft Access database
file AdvWorks.mdb, which is installed with Microsoft Internet Information
Server and located at C:\InetPub\ASPSamp\AdvWorks. Locate the file
adovbs.inc and place it in the directory you plan to use. Cut and paste the
following code to Notepad or another text editor and save it as ADOOpen.asp.
You can view the result in any client browser.

<!-- #Include file="ADOVBS.INC" -->
<HTML><HEAD>
<TITLE>ADO 1.5 Open Method</TITLE>
</HEAD><BODY>
<FONT FACE="MS SANS SERIF" SIZE=2>
<Center><H3>ADO Open Method</H3>
<TABLE WIDTH`0 BORDER=0>
<TD VALIGN=TOP ALIGN=LEFT COLSPAN=3><FONT SIZE=2>
<! ADO Connection used to create 2 recordsets-->
<%
Set OBJdbConnection = Server.CreateObject("ADODB.Connection")
OBJdbConnection.Open "AdvWorks"
SQLQuery = "SELECT * FROM Customers"
'First Recordset RSCustomerList
Set RSCustomerList = OBJdbConnection.Execute(SQLQuery)
'Second Recordset RsProductist
Set RsProductList = Server.CreateObject("ADODB.Recordset")
RsProductList.CursorType = adOpenDynamic
RsProductList.LockType = adLockOptimistic
RsProductList.Open "Products", OBJdbConnection
%>
<TABLE COLSPAN=8 CELLPADDING=5 BORDER=0>

<!-- BEGIN column header row for Customer Table-->

<TR><TD ALIGNÎNTER BGCOLOR="#008080">
<FONT STYLE="ARIAL NARROW" COLOR="#ffffff" SIZE=1>Company Name</FONT></TD>
<TD ALIGNÎNTER BGCOLOR="#008080">
<FONT STYLE="ARIAL NARROW" COLOR="#ffffff" SIZE=1>Contact Name</FONT></TD>
<TD ALIGNÎNTER WIDTH0 BGCOLOR="#008080">
<FONT STYLE="ARIAL NARROW" COLOR="#ffffff" SIZE=1>E-mail address</FONT></TD>
<TD ALIGNÎNTER BGCOLOR="#008080">
<FONT STYLE="ARIAL NARROW" COLOR="#ffffff" SIZE=1>City</FONT></TD>
<TD ALIGNÎNTER BGCOLOR="#008080">
<FONT STYLE="ARIAL NARROW" COLOR="#ffffff"
SIZE=1>State/Province</FONT></TD></TR>

<!--Display ADO Data from Customer Table-->
<% Do While Not RScustomerList.EOF %>
<TR><TD BGCOLOR="f7efde" ALIGNÎNTER>
<FONT STYLE="ARIAL NARROW" SIZE=1>
<%= RSCustomerList("CompanyName")%>
</FONT></TD>
<TD BGCOLOR="f7efde" ALIGNÎNTER>
<FONT STYLE="ARIAL NARROW" SIZE=1>
<%= RScustomerList("ContactLastName") & ", " %>
<%= RScustomerList("ContactFirstName") %>
</FONT></TD>
<TD BGCOLOR="f7efde" ALIGNÎNTER>
<FONT STYLE="ARIAL NARROW" SIZE=1>
<%= RScustomerList("ContactLastName")%>
</FONT></TD>
<TD BGCOLOR="f7efde" ALIGNÎNTER>
<FONT STYLE="ARIAL NARROW" SIZE=1>
<%= RScustomerList("City")%>
</FONT></TD>
<TD BGCOLOR="f7efde" ALIGNÎNTER>
<FONT STYLE="ARIAL NARROW" SIZE=1>
<%= RScustomerList("StateOrProvince")%>
</FONT></TD></TR>
<!-Next Row = Record Loop and add to html table-->
<%
RScustomerList.MoveNext
Loop
RScustomerList.Close
OBJdbConnection.Close
%>
</TABLE>
<HR>
<TABLE COLSPAN=8 CELLPADDING=5 BORDER=0>

<!-- BEGIN column header row for Product List Table-->

<TR><TD ALIGNÎNTER BGCOLOR="#800000">
<FONT STYLE="ARIAL NARROW" COLOR="#ffffff" SIZE=1>Product Type</FONT></TD>
<TD ALIGNÎNTER BGCOLOR="#800000">
<FONT STYLE="ARIAL NARROW" COLOR="#ffffff" SIZE=1>Product Name</FONT></TD>
<TD ALIGNÎNTER WIDTH50 BGCOLOR="#800000">
<FONT STYLE="ARIAL NARROW" COLOR="#ffffff" SIZE=1>Product
Description</FONT></TD>
<TD ALIGNÎNTER BGCOLOR="#800000">
<FONT STYLE="ARIAL NARROW" COLOR="#ffffff" SIZE=1>Unit
Price</FONT></TD></TR>
<!-- Display ADO Data Product List-->
<% Do While Not RsProductList.EOF %>
<TR> <TD BGCOLOR="f7efde" ALIGNÎNTER>
<FONT STYLE="ARIAL NARROW" SIZE=1>
<%= RsProductList("ProductType")%>
</FONT></TD>
<TD BGCOLOR="f7efde" ALIGNÎNTER>
<FONT STYLE="ARIAL NARROW" SIZE=1>
<%= RsProductList("ProductName")%>
</FONT></TD>
<TD BGCOLOR="f7efde" ALIGNÎNTER>
<FONT STYLE="ARIAL NARROW" SIZE=1>
<%= RsProductList("ProductDescription")%>
</FONT></TD>
<TD BGCOLOR="f7efde" ALIGNÎNTER>
<FONT STYLE="ARIAL NARROW" SIZE=1>
<%= RsProductList("UnitPrice")%>
</FONT></TD>

<!-- Next Row = Record -->
<%
RsProductList.MoveNext
Loop
'Remove Objects from Memory Freeing
Set RsProductList = Nothing
Set OBJdbConnection = Nothing
%>
</TABLE></FONT></Center></BODY></HTML>
email Siga el debate Respuesta Responder a este mensaje
Ads by Google
Help Hacer una preguntaRespuesta Tengo una respuesta
Search Busqueda sugerida