|
|
|
|
|
| | |
|
PowerASP active server pages asp.net microsoft .net framework sdk learn asp what is asp tutorial learn asp.net CJWSoft ASPProtect ASPBanner ASPClassifieds
(Advanced)
(Components)
(Database)
(General)
(Vbscript)

|
|
Subject: |
MSIE/Netscape incompatibility |
From: |
Tony Zag |
Date: |
3/4/2000 6:20:31 PM |
IP: |
152.170.189.104 |
Can anyone give me a clue as to why the following code works fine in MSIE, but displays nothing in Netscape Communicator? When I view the source in Netscape, I can see the code, but nothing displays on the screen.
By using response.write messages, I narrowed the problem down to a table that Im building in Javascript.
Id appreciate any thoughts on the subject. Thanks.
Response.write("<TABLE BORDER=1 CELLPADDING=1 CELLSPACING=1 WIDTH=\"100%\" BGCOLOR=#FFFFFF>\n");
Response.write("<tr>\n");
Response.write("<td rowspan=2 align=center>");
Response.write("<FONT SIZE=1 FACE=\"Arial\" COLOR=#000000>\n");
Response.write("<a href=\"javascript:Unselect()\">Clear<br>All</a>\n");
Response.write("</td>\n");
Response.write("<td rowspan=2></td>\n");
if ( CatalogObj.SearchColumnCount > 0 ) {
for ( i = 1; i <= CatalogObj.SearchColumnCount; ++i ) {
ColName = CatalogObj.SearchColumns(i).Name;
Response.write("<th align=left>" );
Response.write("<FONT SIZE=2 FACE=\"Arial\" COLOR=#000000><B>\n");
Response.write("<a href=javascript:SetSortOrder(\"" + ColName + "\")>" );
Response.write( CatalogObj.Attributes(ColName).Synonym );
Response.write("</a></th>\n");
}
}
else {
for ( i = 0; i < DefCols.length; ++i ) {
ColName = DefCols[i];
Response.write("<th align= |
Follow Up - Re: MSIE/Netscape incompatibility - Chris Mangano 3/13/2000 7:14:07 PM
|
|

|
|
|
|
|
|
|
|
|
|