PC Review


Reply
Thread Tools Rate Thread

change order of fields in emailed form results + email hyperlink

 
 
=?Utf-8?B?dHJpcGxlc3BpcmFs?=
Guest
Posts: n/a
 
      4th Feb 2006
Hello yet again

Still mucking about with this form - the form results that I receive by
email have the fields in a different order than what the tab order is on the
form. Is there a way to fix this so the results are shown in a chosen order?
Also (!) is there way to have the email field displayed as a clickable
hyperlink?

Thanks again. and again...

Cheers
L.
 
Reply With Quote
 
 
 
 
Trevor L.
Guest
Posts: n/a
 
      5th Feb 2006
triplespiral wrote:
> Hello yet again
>
> Still mucking about with this form - the form results that I receive
> by email have the fields in a different order than what the tab order
> is on the form. Is there a way to fix this so the results are shown
> in a chosen order?


I don't know what form you are referring to, but if you write your own
script, you can.

e.g
If the form tag is <form name="form1" action=""> and
the fields are named field1, field2, etc. and
the submit is <input type="button" id="submit" value=" Send "
onclick="sendform()" />
use this script:
function sendform()
{
var body = ''
with (document.form1)
{
body += field1.name + ": " + field1.value + '%0d%0a' // line break
after each line
body += field2.name + ": " + field2.value + '%0d%0a' // line break
after each line
body += field3.name + ": " + field3.value + '%0d%0a' // line break
after each line
// these are in the order you require
}
window.location = "mailto:" + "me" + "@" + "mydomain" + ".com"
+ "?subject=My%20Title"
+ "&body=" + body
}

Also (!) is there way to have the email field
> displayed as a clickable hyperlink?


The submit button above does this. Or maybe you don't mean this.

--
Cheers,
Trevor L.
Website: http://tandcl.homemail.com.au


 
Reply With Quote
 
Thomas A. Rowe
Guest
Posts: n/a
 
      5th Feb 2006
Not possible when using the FP Form Handler.

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
==============================================
If you feel your current issue is a results of installing
a Service Pack or security update, please contact
Microsoft Product Support Services:
http://support.microsoft.com
If the problem can be shown to have been caused by a
security update, then there is usually no charge for the call.
==============================================

"triplespiral" <(E-Mail Removed)> wrote in message
news:56F62E07-7D8A-4B48-9D8D-(E-Mail Removed)...
> Hello yet again
>
> Still mucking about with this form - the form results that I receive by
> email have the fields in a different order than what the tab order is on the
> form. Is there a way to fix this so the results are shown in a chosen order?
> Also (!) is there way to have the email field displayed as a clickable
> hyperlink?
>
> Thanks again. and again...
>
> Cheers
> L.



 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
How do I change the tab order for text form fields in Word? =?Utf-8?B?Y29wcGVya2lk?= Microsoft Word Document Management 1 1st Aug 2006 10:24 PM
From address in emailed form results Roger Spencelayh Microsoft Frontpage 4 22nd Jan 2006 04:14 PM
Form - Results Emailed =?Utf-8?B?VG9tSA==?= Microsoft Frontpage 2 8th Mar 2005 09:22 PM
Form Results Emailed Arlene Microsoft Frontpage 3 6th Jan 2004 04:52 AM
How to get form results emailed to you? Shiraz Microsoft Frontpage 2 6th Dec 2003 10:06 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 11:52 PM.