Survey form

E

Ed

Hi All: Using FP03. Would like to build a form that a customer can fill out
for customer service ratings. I would like to email the link to customer and
have in the link an identifying number that autofills or attaches to the
form info sent back to me so I can tell who sent the email or better yet
link the response to the project. I plan on entering the response manually
into access.
 
J

Jens Peter Karlsen [FP-MVP]

You can write a solution for that in a serverside language such as
ASP(.NET) or PHP.

Regards Jens Peter Karlsen. Microsoft MVP - Frontpage.
 
S

Stefan B Rusynko

Send them the link w/ a parameter as in
http://yourURL.com/surveyformpage.html?textName='somevalue'

Then in the survey form page in your form add a field and script to get the parameter

<form> ......

<input type="text" name="textName">
<script language="JavaScript"><!--
document.form.textName.value = location.search.substring(1);
//--></script>

</form>

--




| Hi All: Using FP03. Would like to build a form that a customer can fill out
| for customer service ratings. I would like to email the link to customer and
| have in the link an identifying number that autofills or attaches to the
| form info sent back to me so I can tell who sent the email or better yet
| link the response to the project. I plan on entering the response manually
| into access.
|
|
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top