开发者

ASP Classic page not displaying correctly when processing several table rows

开发者 https://www.devze.com 2023-02-04 07:43 出处:网络
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

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.

0

精彩评论

暂无评论...
验证码 换一张
取 消