473,407 Members | 2,598 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,407 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 1515
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: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
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
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
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
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...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

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.