Forum Moderators: open
Response.write(" <ol type=1>"&vbcrlf)
Response.write(" <li>"&vbcrlf)
Response.Write("<a href=""traffic_between.asp"">Traffic Between a Pair of e-mail addresses for a given Time Range</a><br>")
Response.write(" <li>"&vbcrlf)
Response.Write("<a href=""tracks_message.asp"">Tracks message processing in parking or quarantine areas.</a><br>")
Response.write(" <li>"&vbcrlf)
Response.Write("<a href=""info_about.asp"">Information about the data types discovered in your e-mail.</a><br>")
Response.write(" </ol>"&vbcrlf)
This code surves up this
1.Traffic Between a Pair of e-mail addresses for a given Time Range
1.Tracks message processing in parking or quarantine areas.
1.Information about the data types discovered in your e-mail.
Oh and just for curiousity sake could you tell me is there a way in html to do an ordered list backward, say starting at 7 and ending at 1.
Thanks
Additionally you might want to remove the <br> tags and instead put an </li> in their placem, also assuming that is the code you are running why not do it like this instead as it's far more readable;
%>
<ol type=1>
<li>
<a href="traffic_between.asp">Traffic Between a Pair of e-mail addresses for a given Time Range</a>
</li>
<li>
<a href="tracks_message.asp">Tracks message processing in parking or quarantine areas.</a>
</li>
<li>
<a href="info_about.asp">Information about the data types discovered in your e-mail.</a>
</li>
</ol>
<%
- Tony
and the closing the closing tag
Response.write(" </td></tr></able>" &vbcrlf)
Its always the most stupidest thing that you trip up on. So the code should look like this:
Response.write(" <table cellpadding=3 > <tr><td>"&vbcrlf)
Response.Write(" <ol><li><a href=""traffic_between.asp"">Traffic Between a Pair of e-mail addresses for a given Time Range</a></li>")
Response.Write("<li><a href=""tracks_message.asp"">Tracks message processing in parking or quarantine areas.</a></li>")
Response.Write("<li><a href=""info_about.asp"">Information about the data types discovered in your e-mail.</a></li>")
Response.Write("<li><a href=""details_message.asp"">Details message throughput by policy applied.</a></li>")
Response.Write("<li><a href=""mailsweeper.asp"">MAILsweeper processing performance information.</a></li>")
Response.Write("<li><a href=""top_recipient.asp"">The top recipient 10 addresses for this system.</a></li>")
Response.Write("<li><a href=""message_size.asp"">The top 50 message recipients judged by message size.</a></li>")
Response.Write("<li><a href=""mail_authors.asp"">Lists top mail authors.</a></li>")
Response.Write("<li><a href=""50_mail_authors.asp"">Lists top 50 mail authors that send the most bytes of e-mail.</a></li>")
Response.Write("<li><a href=""single_line.asp"">Single line message log</a></li>")
Response.Write("<li><a href=""processing_info.asp"">Processing information for messages delivered by MAILsweeper.</a></li></ol>")
Response.write(" </td></tr></table>"&vbcrlf)
What was left out was the <tr> & <td>. Anyway the reason its done like this is because its called on later in the page. Oh what about doing a html list backward. Thanks for your help.
fintan.