RE: Question about Netscape

2000-04-24 Thread Olive, Christopher M Mr USACHPPM
without seeing your code, it's hard to say, but NS is VERY picky about proper HTML. i'd be willing to bet that you need "'s around your values. like this. Chris Olive DOHRS Website Administrator [EMAIL PROTECTED] -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] S

RE: Question about Netscape

2000-04-24 Thread Bill Killillay
The display issue in Netscape could be anywhere in your code, not just your form. Check for any missing closing tags on Font's, tables, etc. If Netscape does not see a closing tag it does not display anything at all. IE is a bit more forgiving. I would start by checking for any missing or mess

Re: Question about Netscape

2000-04-24 Thread Brandon Whitaker
>I am doing a form to query information from a database (access). Having it >return information in text boxes. Well it works just fine in IE but, when >it goes to display the returned information in netscape. It does not show >up, but in the view source it is there. Just not showing up. Any i

Re: Question about Netscape

2000-04-24 Thread andy
I have had this problem with netscape before and it is usually because i am missing some closing or in my table commands .. might check the table format if you are using one. [EMAIL PROTECTED] http://lostincyberspace.com >I am doing a form to query information from a database (access). Havi

Re: Question about Netscape

2000-04-24 Thread David Shadovitz
You've probably got an error in your form or table. Can we see the code? -David (IBM? Isn't that one of those new dot-com startups?) On Mon, 24 Apr 2000 10:41:54 -0400 [EMAIL PROTECTED] writes: > > > I am doing a form to query information from a database (access). > Having it > return infor

RE: Question about Netscape

2000-04-24 Thread Lon Lentz
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > > I am doing a form to query information from a database (access). Having it > return information in text boxes. Well it works just fine in IE but, when > it goes to display the returned information in netscape. It does not show > up, but i

Re: Question about Netscape

2000-04-24 Thread Dana Larose
Netscape won't display form elements (like text boxes) unless there is a form tag. Are you using one? If not, try putting: ... around your text boxes. (Failing that, make sure you have closed all your tables) Dana -Original Message- From: [EMAIL PROTECTED] <[EMAIL PROTECTED]> To:

RE: Question about Netscape

2000-04-24 Thread david
Is your form within a table? If Yes, you are missing a close table tag -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, April 24, 2000 7:42 AM To: [EMAIL PROTECTED] Subject: Question about Netscape I am doing a form to query information from a data

RE: Question about Netscape

2000-04-24 Thread Jennifer
I also think this is the case. Try running the code through the html validator at w3.org. You would have to pass any variables in the URL to do this. http://validator.w3.org/ At 10:53 AM 4/24/00 -0400, you wrote: >without seeing your code, it's hard to say, but NS is VERY picky about >proper H