The following CF code: {ft is eq to 0 for this test}
<form name="orderform" action="orderform.cfm?ft=<cfoutput>#ft#</cfoutput>"
onSubmit="return validInfo(this)" method="POST">
<table border="0" cellpadding="0" cellspacing="0" width="700">
<tr>
<td rowspan="2" colspan="2" valign="top" width="212">
<a href="index.htm">
<img name="Nsub_01_01" src="images/sub_logo.gif"
border="0" width="210" height="67">
</a>
</td>
<td rowspan="1" colspan="2" valign="top" width="479">
<img name="Nsub_01_03" src="images/sub_upper_bar.gif" width="390"
height="15" border="0">
</td>
<td width="104">
<img src="images/sub_00.gif" width="1" height="15" border="0">
</td>
</tr>
<CFIF #ft# LT 1> <!--- Begin Section for OrderForm --->
<tr>
<td rowspan="2" colspan="1" valign="top" width="371">
<img name="Nsub_02_03" src="images/hdr_orderform.gif"
border="0" width="310" height="74">
</td>
<td rowspan="2" colspan="1" valign="top" width="106">
<img name="Nsub_02_04" src="images/img_contact.gif"
border="0" width="79" height="74">
</td>
<td width="3">
<img src="images/sub_00.gif" width="1" height="52" border="0">
</td>
</tr>
<CFELSE> <!--- End Section for OrderForm ---><!--- Begin Section for
ContactForm --->
<tr>
<td rowspan="2" colspan="1" valign="top" width="371">
<img name="Nsub_02_03" src="images/hdr_contactform.gif"
border="0" width="310" height="74">
</td>
<td rowspan="2" colspan="1" valign="top" width="106">
<img name="Nsub_02_04" src="images/img_contact.gif"
border="0" width="79" height="74">
</td>
<td width="3">
<img src="/images/sub_00.gif" width="1" height="52" border="0">
</td>
</tr>
</CFIF> <!--- End Section for ContactForm --->
Produces this HTML in IE:
<form name="orderform" action="orderform.cfm?ft=0"
onSubmit="return validInfo(this)" method="POST">
<table border="0" cellpadding="0" cellspacing="0" width="700">
<tr>
<td rowspan="2" colspan="2" valign="top" width="212">
<a href="index.htm">
<img name="Nsub_01_01" src="images/sub_logo.gif"
border="0" width="210" height="67">
</a>
</td>
<td rowspan="1" colspan="2" valign="top" width="479">
<img name="Nsub_01_03" src="images/sub_upper_bar.gif"
width="390" height="15" border="0">
</td>
<td width="104">
<img src="images/sub_00.gif" width="1" height="15" border="0">
</td>
</tr>
<tr>
<td rowspan="2" colspan="1" valign="top" width="371">
<img name="Nsub_02_03" src="images/hdr_orderform.gif"
border="0" width="310" height="74">
</td>
<td rowspan="2" colspan="1" valign="top" width="106">
<img name="Nsub_02_04" src="images/img_contact.gif"
border="0" width="79" height="74">
</td>
<td width="3">
<img src="images/sub_00.gif" width="1" height="52" border="0">
</td>
</tr>
BUT produces this HTML in Nav 4.7:
{note the form action and the single quotes in the td and image attributes}
<form name="orderform" action="orderform.cfm?ft=" & 0
onSubmit="return validInfo(this)" method="POST">
<table border="0" cellpadding="0" cellspacing="0" width="700">
<tr>
<td rowspan='2' colspan='2' valign='top' width='212'>
<a href='index.htm'>
<img name='Nsub_01_01' src='images/sub_logo.gif'
border='0' width='210' height='67'>
</a>
</td>
<td rowspan='1' colspan='2' valign='top' width='479'>
<img name='Nsub_01_03' src='images/sub_upper_bar.gif'
width='390' height='15' border='0'>
</td>
<td width='104'>
<img src='images/sub_00.gif' width='1' height='15' border='0'>
</td>
</tr>
<tr>
<td rowspan='2' colspan='1' valign='top' width='371'>
<img name='Nsub_02_03' src='images/hdr_orderform.gif'
border='0' width='310' height='74'>
</td>
<td rowspan='2' colspan='1' valign='top' width='106'>
<img name='Nsub_02_04' src='images/img_contact.gif'
border='0' width='79' height='73'>
</td>
<td width='3'>
<img src='images/sub_00.gif' width='1' height='52' border='0'>
</td>
</tr>
This is very bizzare that NS would REPLACE the " with ' in the HTML source.
Since this is happening, NS will NOT load the page at all. Any ideas on what
may be causing this????? God, I just got a real big headache!!!
**********************************************************************
This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they
are addressed. If you have received this email in error please notify
the system manager.
This footnote also confirms that this email message has been swept by
MIMEsweeper for the presence of computer viruses.
www.mimesweeper.com
**********************************************************************
------------------------------------------------------------------------------
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.