|
Código fuente de ejemplo1.asp | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
<% @ LANGUAGE="VBSCRIPT" EnableSessionState = False %>
<%Option Explicit
Response.Buffer = True %>
<html>
<head>
<title>dbGrid: valores por defecto</title>
</head>
<body bgcolor='#F0F0EC' topmargin='8'>
<!--#include file="dbgrid.asp" -->
<%
Dim oDb
Set oDb = new dbGrid
oDb.Carpeta = Server.MapPath("../../data/ejemplos/")
oDb.Activar
set oDb = nothing
%>
</body>
</html>
|