473,386 Members | 1,790 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

disappearing table

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>
--
_____
DC G
Jul 21 '05 #1
7 1514
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!
***************************

"DC Gringo" wrote:
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>
--
_____
DC G

Jul 21 '05 #2
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

"Cowboy (Gregory A. Beamer) - MVP" <No************@comcast.netNoSpamM> wrote
in message news:C8**********************************@microsof t.com...
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!
***************************

"DC Gringo" wrote:
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>
--
_____
DC G

Jul 21 '05 #3
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

"DC Gringo" <dc******@visiontechnology.net> wrote in message
news:uH**************@TK2MSFTNGP11.phx.gbl...
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

"Cowboy (Gregory A. Beamer) - MVP" <No************@comcast.netNoSpamM> wrote in message news:C8**********************************@microsof t.com...
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!
***************************

"DC Gringo" wrote:
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>
--
_____
DC G


Jul 21 '05 #4
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>

"Jeff Dillon" <je**@removeemergencyreporting.com> wrote in message
news:O2**************@TK2MSFTNGP14.phx.gbl...
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

"DC Gringo" <dc******@visiontechnology.net> wrote in message
news:uH**************@TK2MSFTNGP11.phx.gbl...
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

"Cowboy (Gregory A. Beamer) - MVP" <No************@comcast.netNoSpamM>

wrote
in message news:C8**********************************@microsof t.com...
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!
***************************

"DC Gringo" wrote:

> 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>
>
>
> --
> _____
> DC G
>
>
>



Jul 21 '05 #5
"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

"DC Gringo" <dc******@visiontechnology.net> wrote in message
news:Os**************@TK2MSFTNGP11.phx.gbl...
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>

"Jeff Dillon" <je**@removeemergencyreporting.com> wrote in message
news:O2**************@TK2MSFTNGP14.phx.gbl...
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

"DC Gringo" <dc******@visiontechnology.net> wrote in message
news:uH**************@TK2MSFTNGP11.phx.gbl...
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

"Cowboy (Gregory A. Beamer) - MVP" <No************@comcast.netNoSpamM>

wrote
in message news:C8**********************************@microsof t.com...
> 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!
> ***************************
>
> "DC Gringo" wrote:
>
> > 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>
> >
> >
> > --
> > _____
> > DC G
> >
> >
> >



Jul 21 '05 #6
Sorry, I meant "remove" another table...
"Jeff Dillon" <je**@removeemergencyreporting.com> wrote in message
news:Ow**************@TK2MSFTNGP15.phx.gbl...
"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

"DC Gringo" <dc******@visiontechnology.net> wrote in message
news:Os**************@TK2MSFTNGP11.phx.gbl...
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>

"Jeff Dillon" <je**@removeemergencyreporting.com> wrote in message
news:O2**************@TK2MSFTNGP14.phx.gbl...
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

"DC Gringo" <dc******@visiontechnology.net> wrote in message
news:uH**************@TK2MSFTNGP11.phx.gbl...
> 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
>
> "Cowboy (Gregory A. Beamer) - MVP" <No************@comcast.netNoSpamM> wrote
> in message news:C8**********************************@microsof t.com... > > 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!
> > ***************************
> >
> > "DC Gringo" wrote:
> >
> > > 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>
> > >
> > >
> > > --
> > > _____
> > > DC G
> > >
> > >
> > >
>
>



Jul 21 '05 #7
Ok, getting closer. Can you post sufficient code to reproduce the problem?
Perhaps removing the css tag did the trick?

Jeff

"DC Gringo" <dc******@visiontechnology.net> wrote in message
news:ek**************@tk2msftngp13.phx.gbl...
Sorry, I meant "remove" another table...
"Jeff Dillon" <je**@removeemergencyreporting.com> wrote in message
news:Ow**************@TK2MSFTNGP15.phx.gbl...
"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

"DC Gringo" <dc******@visiontechnology.net> wrote in message
news:Os**************@TK2MSFTNGP11.phx.gbl...
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>

"Jeff Dillon" <je**@removeemergencyreporting.com> wrote in message
news:O2**************@TK2MSFTNGP14.phx.gbl...
> 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
>
> "DC Gringo" <dc******@visiontechnology.net> wrote in message
> news:uH**************@TK2MSFTNGP11.phx.gbl...
> > 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
> >
> > "Cowboy (Gregory A. Beamer) - MVP" <No************@comcast.netNoSpamM> > wrote
> > in message news:C8**********************************@microsof t.com... > > > 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!
> > > ***************************
> > >
> > > "DC Gringo" wrote:
> > >
> > > > 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>
> > > >
> > > >
> > > > --
> > > > _____
> > > > DC G
> > > >
> > > >
> > > >
> >
> >
>
>



Jul 21 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

9
by: Larry Woods | last post by:
I have a site that works fine for days, then suddenly, I start getting ASP 0115 errors with an indication that session variables IN SEPARATE SESSIONS have disappeared! First, for background...
3
by: Csaba2000 | last post by:
I apologize for the length of the page below, but I've tried to whittle it down as much as I can. The problem is that Netscape 6.1 on my Win 2K Pro machine is disappearing the final row of the...
2
by: neptune | last post by:
I built a form to access a query with a 2 field primary key. It should use 2 controls to find the unique record and display the other field values on the form. In the criteria section of the...
2
by: Rachel Suddeth | last post by:
Here is my scenario: I have a few custom controls that I set up on a form and tested setting properties and appearances. Then I added a couple references to the project which add classes I need to...
6
by: Winshent | last post by:
I have read many threads which indicate that this was a problem with version 2002. Why should i be suffering this? I am using VB.NET 2003 Standard Edition... is it still a problem with 2003? ...
2
by: Kevin Audleman | last post by:
I am using a hosted MSSQL 2000 database that powers the backend of my website. Website visitors interact with it via ASP pages I have developed. I also have an internal FileMaker 7 database that...
3
by: mark.szretter | last post by:
Relationships between tables disappear without explanation in the database diagram using SQL Server 2005. Many thanks for any thoughts/questions on the topic!
8
by: Neil | last post by:
I am running an Access 2000 MDB against a SQL 7 back end, using ODBC linked tables over a LAN and a WAN. The system has been operational for years with relatively few problems. Recently, WAN...
2
by: insanity | last post by:
Can anyone help me with a problem that I have with apparently unrelated text disappearing in IE7 when I set a className. This does not happen in Firefox. I am trying to create an Ajax driven...
0
by: =?Utf-8?B?Q2hhcmxlcw==?= | last post by:
Like many people, I normally use Yahoo! Mail via the web and like to keep all my emails stored on the Yahoo! server. However sometimes I can’t get access to a PC/the web and I download my emails...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.