the form returns the page i want but with an unusual url
all my locations are relative and i'm running it locally.  the results come back under

127.0.0.1//index.cfm

any ideas?

<!---index.cfm?fuseaction=contact--->
<p class="title">Contact</p>
<p>We love feedback about our site and opinions on other sites.  Use the form below to 
tell us what you like about our site, service, or any other
site or service for that matter.  We want to give you the best of the web and if we 
haven't already done it or something like it, there's no doubt we
can.</p>
<script>
function validate(arg1){
     if(!arg1.email.value || arg1.email.value==''){
     alert("Please enter an email address");
     arg1.email.focus();
     return false;
     }
}
</script>
<form name="contactF" action="index.cfm" method="post" onsubmit="return 
validate(this)">
Your Email:<br>
<input type="hidden" name="fuseaction" value="confirmcontact">
<input type="Text" size="10" name="email" maxlength="50"><br>
Message Body:<br>
<textarea name="comments" cols="20" rows="5" name="body" wrap="soft" 
maxlength="256"></textarea><br>
<input type="submit" value="  Submit  ">
</form>




"Adkins, Randy" <[EMAIL PROTECTED]> on 04/18/2001 09:38:54 AM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk <[EMAIL PROTECTED]>
cc:

Subject:  RE: 2 /'s


Paste your form tag so we can isolate it for you

-----Original Message-----
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, April 18, 2001 10:20 AM
To: CF-Talk
Subject: 2 /'s


why does an additional / appear in the url after i submit a form?

when i submit from 127.0.0.1/index.cfm?action=contact
to
index.cfm w/ <input type="hidden" name="fuseaction" value="confirmcontact">

if get the page i want but it's under the url
127.0.0.1//index.cfm
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to