R
ree32
I am using Repeatlayout flow on my datalist so I can have my table
layout outside the datalist. But its crapping this huge spacing above
the table. The spacing is proportional to the number of records in the
datalist.
This table is in the main table.
Here is a bit of the code
<table class="search">
<asp
ataList ID="listSearch" RepeatLayout=Flow Runat=server >
<ItemTemplate>
<tr><td><%# Container.DataItem("col1") %></td>
<td><%# Container.DataItem("col2") %></td><tr>
</ItemTemplate>
</asp
ataList>
</table>
When I looked at the source produced by the browser IE. i saw this
Span tag
<table class="jobSearch">
<span id="listSearch"><span>
<tr><td>041221</td>...
I believe this useless span tag is causing this spacing. Is there
anyway around this stupid mess?
Thanks
layout outside the datalist. But its crapping this huge spacing above
the table. The spacing is proportional to the number of records in the
datalist.
This table is in the main table.
Here is a bit of the code
<table class="search">
<asp
<ItemTemplate>
<tr><td><%# Container.DataItem("col1") %></td>
<td><%# Container.DataItem("col2") %></td><tr>
</ItemTemplate>
</asp
</table>
When I looked at the source produced by the browser IE. i saw this
Span tag
<table class="jobSearch">
<span id="listSearch"><span>
<tr><td>041221</td>...
I believe this useless span tag is causing this spacing. Is there
anyway around this stupid mess?
Thanks