I'm generating a table that displays all links in an email message. Some
may have many links, which creates a very long table. Each link uses a row.
It may take five seconds or more to display this table on a DSL connection.
The fact that there is so much data isn't a problem. Using a table and
waiting five or more seconds to see the results is a problem.
I believe CSS can display each row as it is rendered. This way the table
displays gradually, rather than all at once. Can some one elaborate on this
and how it might be done?
Thanks,
Brett
Ali Babba - 29 Jan 2005 16:51 GMT
> I'm generating a table that displays all links in an email message. Some
> may have many links, which creates a very long table. Each link uses a row.
[quoted text clipped - 8 lines]
> Thanks,
> Brett
you want to 'see' your email coming in ? i guess it completely depends
on the email client used how things appear when arriving.
anyway, i guess you wont do much with your email until is has arrived
completely.
also: if this is so much information, why dont you zip it and send it as
an attachment ?
sorry no solution and instead only more question,
martin
Richard - 29 Jan 2005 19:15 GMT
> I'm generating a table that displays all links in an email message.
> Some
[quoted text clipped - 4 lines]
> The fact that there is so much data isn't a problem. Using a table and
> waiting five or more seconds to see the results is a problem.
> I believe CSS can display each row as it is rendered. This way the
> table
> displays gradually, rather than all at once. Can some one elaborate on
> this
> and how it might be done?
> Thanks,
> Brett
Use html.
However, many mail handlers may not recognize html, or the user has it
turned off.
You'd be better off mailing one link, which directs the user to a website
that contains the links.
Wich in turn, saves downloading time.
And the recipient will see the message even with html turned off.
Brett - 29 Jan 2005 19:43 GMT
>> I'm generating a table that displays all links in an email message.
>> Some
[quoted text clipped - 21 lines]
> Wich in turn, saves downloading time.
> And the recipient will see the message even with html turned off.
No mail program is being used. The email message is saved to a file as HTML
and the links scanned into another file (actually database). These are then
processed via CFMX and output as HTML. Sorry for not being clearer.
Brett
Ali Babba - 29 Jan 2005 20:06 GMT
>>>I'm generating a table that displays all links in an email message.
>>>Some
[quoted text clipped - 27 lines]
>
> Brett
maybe you are looking for something like this ?!
although i still dont really get what your problem is.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Sidescroller</title>
<style type="text/css">
a {
float: left;
clear: both;
margin: 1px;
padding: 2px;
border: 2px solid blue;
font-family: arial, helvetica, sans-serif;
color: maroon;
text-decoration: none;
background-color: #ffdddd;
border-color: red;
}
</style>
</head>
<body>
<a href="..">link</a>
<a href="..">linklink</a>
<a href="..">linkll</a>
<a href="..">link</a>
<a href="..">linkink</a>
</body>
</html>