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 Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Maintaining Hyperlinks in Access Report when converting to HTML

Status
Not open for further replies.

rewdee

Programmer
Aug 17, 2001
295
US
I have a report that has a field for hyperlinks. The report is fine but I want to convert to HTML using DoCmd.OutputTo. When I convert the report to HTML, the hyperlinks are displayed but have no HREF. The HTML in the report looks like:

<a HREF>./queryDetails/ESDailyAirWater_Q.html

Of course I want the HTML to look like:

<a HREF=&quot;./queryDetails/ESDailyAirWater_Q.html&quot;>ESDailyAirWater_Q.html</a>

Is there something I can do that will allow me to convert the report to html but maintain the links?

Any help or ideas would be appreciated.

Thanks,
Rewdee

 
Rats and DOUBLE RATS. I do know ASP and other dynamic web pages (ISAPI,CGI) but the trouble is the server that I will get will not have scripts enabled so I must generate literally hundreds of static html pages. I originally okayed this because I thought:

1) the content of the pages would remain static
2) Make reports and have Access convert to HTML.

I'll have to write my own HTML report generator (File I/O).

Thanks for the reply,
Rewdee
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top