OK This form works fine in IE 5.5 but gets cut off right below <h3> in
Netscape:

  <HTML>
 <HEAD>
 <cfquery name="get_states" datasource="ibtoad">
 SELECT state_ab FROM states
 </cfquery>
 <cfquery name="get_countries" datasource="ibtoad">
 SELECT country_name FROM countries
 ORDER by country_name
 </cfquery>
      <TITLE>Store Registration</TITLE>
  </HEAD>
  <BODY>
<H1 align="center">Store Registration</H1>
<!---Registration Form--->
 <p align="center"><b>To start shopping please register below:</b>
<CFFORM ACTION="registration_action.cfm?#client.urltoken#" METHOD="post">
<table align="center">
<tr>
<td><b>User ID:</b></td>
<td><CFINPUT TYPE="text" NAME="user_id" Required="yes"></td>
</tr>
<tr>
<td><b>Password:</b></td>
<td><CFINPUT TYPE="password" NAME="password" Required="yes"></td>
</tr>
<tr>
<td><b>Email Address:</b></td>
<td><CFINPUT TYPE="text" NAME="email_address" Required="yes"></td>
</tr>
<tr>
<td><b>First Name:</b></td>
<td><CFINPUT TYPE="text" NAME="first_name" Required="yes"></td>
</tr>
<tr>
<td><b>Last Name:</b></td>
<td><CFINPUT TYPE="text" NAME="last_name" Required="yes"></td>
</tr>
<tr>
<td> <b>Address:</b></td>
<td><CFINPUT TYPE="text" NAME="street_address" Required="yes"></td>
</tr>
<td> <b>City:</b></td>
<td><CFINPUT TYPE="text" NAME="city" Required="yes"></td>
</tr>
<tr>
<td> <b>State:</b></td>
<td><select name="state">
<cfoutput query="get_states">
<option value="#state_ab#">#state_ab#</option></cfoutput></select><br></td>
</tr>
<tr>
<td><b>Zip Code:</b></td>
<td><CFINPUT TYPE="text" NAME="zip" size="5" Validate="zipcode"
Message="Please enter a valid Zip Code."></td>
</tr>
<tr>
<td><b>Country:</b></td>
<td><select name="country">
<cfoutput query="get_countries">
<option
value="#country_name#">#country_name#</option></cfoutput></select></td>
</tr>
<tr>
<td> <INPUT TYPE="submit" Value="Register"></td>
</tr>
</CFFORM>

</BODY>
</HTML>

-----Original Message-----
From: Gavin Myers [mailto:[EMAIL PROTECTED]]
Sent: Thursday, October 05, 2000 12:02 PM
To: CF-Talk
Subject: RE: Netscape?


can you copy/paste the source? that may make it easier to find a problem

-----Original Message-----
From: HappyToad.com [mailto:[EMAIL PROTECTED]]
Sent: Thursday, October 05, 2000 9:21 AM
To: CF-Talk
Subject: RE: Netscape?


OK explain this. The form works when I use it as a CFINCLUDE but not on its
own.  I can't figure it out.
Rich

-----Original Message-----
From: James Taavon [mailto:[EMAIL PROTECTED]]
Sent: Thursday, October 05, 2000 10:08 AM
To: CF-Talk
Subject: Re: Netscape?


This is a multi-part message in MIME format.
--------------9F438ACC8159EB2C0B77E0AA
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit

It must be your code.

I got cfform running using both IE and Netscape.

"HappyToad.com" wrote:
>
> Is there something wrong with my code or does Netscape not recognise
> <CFFORM>?
>
> Rich
--------------9F438ACC8159EB2C0B77E0AA
Content-Type: text/x-vcard; charset=us-ascii;
 name="jtaavon.vcf"
Content-Transfer-Encoding: 7bit
Content-Description: Card for James Taavon
Content-Disposition: attachment;
 filename="jtaavon.vcf"

begin:vcard
n:Taavon;James
tel;cell:(443) 506-2117
tel;fax:(410) 333-5203
tel;work:(410) 767-3415
x-mozilla-html:FALSE
org:Department of Labor, Licensing and Regulation;Office of Information and
Technology
version:2.1
email;internet:[EMAIL PROTECTED]
title:Senior Web Developer
adr;quoted-printable:;;1100 N. Eutaw Street,=0D=0ARoom
203;Baltimore;MD;21201;
fn:James Taavon
end:vcard

--------------9F438ACC8159EB2C0B77E0AA--

----------------------------------------------------------------------------
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
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.

----------------------------------------------------------------------------
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
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.
----------------------------------------------------------------------------
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
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.

------------------------------------------------------------------------------
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
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.

Reply via email to