ACC2000: Blank Records Do Not Show in Table Exported as HTML (197951)
The information in this article applies to:
This article was previously published under Q197951 SYMPTOMSAdvanced: Requires expert coding, interoperability, and multiuser skills.
When you export a table that contains consecutive blank records to HTML
format, you see one blank line instead of a blank line for each record.
RESOLUTIONNOTE: This example contains information about editing ASP files. It
assumes that you are familiar with Active Server, Visual Basic Scripting,
and editing HTML files. Microsoft Access Product Support professionals do not
support modification of any HTML, HTX, IDC, or ASP files.
When you export a table to HTML format, the blank record is represented by
a <BR> tag in the HTML code. Replace the <BR> tag with ; then, the table will correctly display the blank
records.
To see the blank records displayed correctly, follow these steps:
- Start Microsoft Access and create a new table named TstHTMLBlank.
In Design view, create two fields: TestName as Text, and TestDate as
Date.
- Add eight records to the table.
- Use the BACKSPACE key to remove five consecutive records. Do not use
the DELETE key to remove the records; you only want to remove the data
so that the fields are empty.
- Save and close the table.
- On the File menu, click Export.
- On the "Export Table TstHTMLBlank As" screen, move to the My Documents
folder.
- Click the arrow in the Save As Type box, select HTML Documents, and
then click Save.
- Open Microsoft Internet Explorer, and then follow these steps:
- On the File menu, click Open, and then click Browse.
- In the Open dialog box, in the "Look In" box, browse to the My
Documents folder.
- In the My Documents folder, select the TstHTMLBlank_1.html file,
and then click Open.
- In the Open dialog box, click OK.
Note that you see the table displayed with one blank line instead of a
blank line for each blank record as expected.
- Using the right mouse button, click the screen, and then click View
Source on the menu that appears.
Note that for each blank record, a line similar to the following
appears in the source:
<TR VALIGN=TOP>
<TD BORDERCOLOR=#c0c0c0 ><FONT SIZE=2 FACE="Arial"
COLOR=#000000><BR></FONT></TD>
<TD BORDERCOLOR=#c0c0c0 ALIGN=RIGHT><FONT SIZE=2 FACE="Arial"
COLOR=#000000><BR></FONT></TD>
</TR>
- Use a text editor, such as Notepad, to replace the <BR> tag with
as follows:
<TR VALIGN=TOP>
<TD BORDERCOLOR=#c0c0c0 ><FONT SIZE=2 FACE="Arial"
COLOR=#000000> </FONT></TD>
<TD BORDERCOLOR=#c0c0c0 ALIGN=RIGHT><FONT SIZE=2 FACE="Arial"
COLOR=#000000><BR></FONT></TD>
</TR>
- On the File Menu, click Save.
- Click Close.
- On the View Menu, click Refresh. Note that the table displays the
lines for the blank records as expected.
Modification Type: | Minor | Last Reviewed: | 7/16/2004 |
---|
Keywords: | kbprb KB197951 |
---|
|