Windows Vista Forums
Vista Forums Home Join Vista Forums Windows 7 Forum Vista Tutorials Tags
Welcome to Windows Vista Forums. Our forum is dedicated to helping you find solutions with any problems, errors or issues you are experiencing with Windows Vista. The Vista forum also covers news and updates and has an extensive Windows Vista tutorial section that covers a wide range of tips and tricks.

Go Back   Vista Forums > Misc Newsgroups > VB Script

Vista - Access, OLE, and WEB view

Reply
 
Old 04-16-2009   #1 (permalink)
RICK


 
 

Access, OLE, and WEB view

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>

My System SpecsSystem Spec
Reply

Thread Tools


Similar Threads
Thread Forum
Re: Cannot access explorer view of sharepoint doc library Vista General
Can't view attachments using Vista and Outlook Web access Vista General
Cannot view shared folders, but can access them directly Vista networking & sharing
Unable to open this log or view. Access is denied (5) Vista General
Get-Format/Get-View command to return views, view defs? PowerShell


Vista Forums is an independent web site and has not been authorized,
sponsored, or otherwise approved by Microsoft Corporation.
"Windows Vista", the Start Orb, and related materials are trademarks of Microsoft Corp.
© Designer Media Ltd

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46