R
RICK
How can you open an MS Access OLE from a WEB page.
Here is what I have so far. With this code the database is found. The
record is found but the link is incorrect.
<%@ LANGUAGE="VBSCRIPT" %>
<% Response.Buffer = True %>
<!--#INCLUDE FILE="Control_i_.asp" -->
<!--#INCLUDE FILE="Connection.asp" -->
<HTML>
<HEAD>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Untitled Document</title>
</head>
<%
Set rsTemp = server.createobject("adodb.recordset")
conn.aqrytbltest rsTemp
strdocument = rsTemp.fields("test")
%>
<body>
<% response.write strdocument %>
<a href=<%= strdocument %>>abd</a>
</body>
</html>
Here is what I have so far. With this code the database is found. The
record is found but the link is incorrect.
<%@ LANGUAGE="VBSCRIPT" %>
<% Response.Buffer = True %>
<!--#INCLUDE FILE="Control_i_.asp" -->
<!--#INCLUDE FILE="Connection.asp" -->
<HTML>
<HEAD>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Untitled Document</title>
</head>
<%
Set rsTemp = server.createobject("adodb.recordset")
conn.aqrytbltest rsTemp
strdocument = rsTemp.fields("test")
%>
<body>
<% response.write strdocument %>
<a href=<%= strdocument %>>abd</a>
</body>
</html>