Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Make dynamic data from an Access DB have hyperlinks

Status
Not open for further replies.

kiwieur

Technical User
Apr 25, 2006
200
0
0
GB
Hi,
Not sure if I am going to be able to explain this properly but here goes.

I have an access DB table that stores the location of files on the web server.

The idea is that if a new file is uploaded then the user can enter the file path and it will show as an hyperlink that other users can click to open the file.

I have a insert record form where the users will enter the data.

Then i have a asp page that pulls data from the table using a recordset

This is the data that I want to hyperlink

Code:
<td><a href=><%=(rsFiles.Fields.Item("Location").Value)%></a></td>

I can get it to display as a link but get the following error message

Code:
You are not authorized to view this page 
You might not have permission to view this directory or page using the credentials you supplied. 

--------------------------------------------------------------------------------

If you believe you should be able to view this directory or page, please try to contact the Web site by using any e-mail address or phone number that may be listed on the kiwinetuk home page.

You can click  Search to look for information on the Internet.




HTTP Error 403 - Forbidden 
Internet Explorer

Does anyone have any ideas why this would happen, any help would be appreciated

Regards

Paul

 
Ok, I have managed to sort it changed the following from this

Code:
<td><a href=><%=(rsFiles.Fields.Item("Location").Value)%></a></td>

to this
Code:
<td><A HREF="<%=(rsFiles.Fields.Item("NameOf File").Value)%>" target="_blank"><%=(rsFiles.Fields.Item("NameOf File").Value)%></A></td>

Regards

Paul

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top