disappearing table

  • Thread starter Thread starter DC Gringo
  • Start date Start date
D

DC Gringo

I'm COMPLETELY baffled as to why this is in my html source code when I view
source from IE but invisible when rendering:


<table cellspacing="0" cellpadding="3" align="Center" border="0"
id="MonthlyReports1_DataGrid1" style="border-collapse:collapse;">
<tr
style="font-family:verdana,helvetica,arial;font-size:8pt;font-weight:bold;">
<td>PUBLISHED</td><td>HEADLINE</td><td>CVG START</td><td>END</td>
</tr>

....

</table>

Which is generated from:

<asp:DataGrid id="DataGrid1" CELLPADDING="3" HORIZONTALALIGN="Center"
GRIDLINES="None" runat="server" DataSource="<%# DsMonthlyReports1 %>"
AutoGenerateColumns="False" DATAMEMBER="fn3MonthlyReports" >
<HEADERSTYLE FONT-SIZE="8pt" FONT-NAMES="verdana,helvetica,arial"
FONT-BOLD="True"></HEADERSTYLE>

<COLUMNS>
....

</COLUMNS>

</ASP:DATAGRID>
 
The ASP.NET controls are written directly to stream through the ASP.NET
engine. I assume that is what you are talking about?


---

Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

***************************
Think Outside the Box!
***************************
 
Yes, I am aware of that. What I'd like to know is that about this HTML code
is preventing IE from seeing it. Firefox/Mozilla sees it but IE doesn't.

_____
DC G
 
Obviously simplify the client source till it appears. Do File/Save on the
View/Source, then view it locally. Then get to work, removing/playing with
the code till it works. 10 minutes or less.

Did you try this?

Jeff
 
Ok, I find that when I remember another table further up above, the problem
goes away. No clue what could be in here that would cause it:

..maincontent table#overview{
color: #333333;
font-size:12px;
border-top: 1px dotted #cccccc;
border-BOTTOM: 1px dotted #cccccc;
}

<TABLE id=overview height="100%" cellSpacing=0 cellPadding=0 width="100%"
border=0>
<TBODY>
<TR
<TD vAlign=top width="100%">&nbsp; </TD>
</TR></TBODY></TABLE>
 
"when I remember another table"

What do you mean?

I also fondly remember some of my working code from long ago. But it doesn't
always help the current problem.

Jeff
 
Sorry, I meant "remove" another table...


Jeff Dillon said:
"when I remember another table"

What do you mean?

I also fondly remember some of my working code from long ago. But it doesn't
always help the current problem.

Jeff


style="font-family:verdana,helvetica,arial;font-size:8pt;font-weight:bold;">
 
Ok, getting closer. Can you post sufficient code to reproduce the problem?
Perhaps removing the css tag did the trick?

Jeff
 
Back
Top