ASP Classic page not displaying correctly when processing several table rows
My asp page is trying to display several table开发者_如何学JAVA rows from a loop. Somehow the html output becomes malformed. I'm thinking this might be an issue with asp page processing too much data? I remember back then we would have issues in formatting when rows get to around a few thousands.
Does the portion of data that come from database contain HTML markup? For example you might be doing this:
...
<tr><%= rsData( "content" ) %></tr>
...
If the content
field contains HTML markup, specially something like </td>
or </tr>
it'll break your table layout.
精彩评论