When you export a report to HTML format, and then view the report in
your Web browser, you may receive one of the following error messages
when you click on one of the page links:
HTTP/1.0 500 Server Error (161)
You edited a template in Microsoft FrontPage, and then you used that
template when you exported the report to HTML.
After you have edited the template in Microsoft FrontPage, open it in a
text editor, such as Notepad. In the tokens that create the navigation
links, replace any instance of the string "%3c" with the character "<";
replace any instance of the string "%3e" with the character ">" as well.
For example, change
<a href="http://support.microsoft.com/?scid=%253c%21--accesstemplate_firstpage--%253e">First</a>
<a href="http://support.microsoft.com/?scid=%253c%21--accesstemplate_previouspage--%253e">Previous</a>
<a href="http://support.microsoft.com/?scid=%253c%21--accesstemplate_nextpage--%253e">Next</a>
<a href="http://support.microsoft.com/?scid=%253c%21--accesstemplate_lastpage--%253e">Last</a>
to:
<a href = "<!--AccessTemplate_FirstPage-->">First</a>
<a href = "<!--AccessTemplate_PreviousPage-->">Previous</a>
<a href = "<!--AccessTemplate_NextPage-->">Next</a>
<a href = "<!--AccessTemplate_LastPage-->">Last</a>
After you have saved the edited template, export the report to HTML again.
You can also edit the HTML files to which the report was exported and add
the hyperlinks that allow you to move to different pages. For example, on
the first page of the exported report, the navigation hyperlinks would be:
<A HREF = "#">First</A>
<A HREF = "#">Previous</A>
<A HREF = "Report1_1Page2.html">Next</A>
<A HREF = "Report1_1Page5.html">Last</A>
However, this method is not recommended because it is inconvenient if the
report contains more than a few pages.
Microsoft has confirmed this to be a problem in Microsoft Access 97. This
problem no longer occurs in Microsoft Access 97 Service Release 1.
NOTE: Stand-alone Microsoft Access 97 Service Release 1 is not currently
available, but you can update your copy of Microsoft Access 97 to Service
Release 1 by downloading Microsoft Office Service Release 1 from
Microsoft's Web site at:
For more information about navigation links in templates, please see the
following article in the Microsoft Knowledge Base:
164007Â
(http://kbalertz.com/Feedback.aspx?kbNumber=164007/EN-US/
)
Reports Exported to HTML Have No Page Links