Front Page Forms

A

Albert Frausto

Is it possible to create a form with a drop-down menu listing staff members
names and their email addresses as values, for example,

<select size="1" name="staff">
<option value="[email protected]">John Smith</option>
</select>

and depending on what staff member a visitor has chosen from the drop-down
menu, the form would be sent to that person? If so, please direct me to an
example of how to accomplish that.

I'm using MS FrontPage 2003 and publishing to a Windows 2003 server with IIS
6.

Thanks
 
S

Stefan B Rusynko

Not with the FP forms handler
- you will need a server side script like ASP or PHP

--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
_____________________________________________


| Is it possible to create a form with a drop-down menu listing staff members
| names and their email addresses as values, for example,
|
| <select size="1" name="staff">
| <option value="[email protected]">John Smith</option>
| </select>
|
| and depending on what staff member a visitor has chosen from the drop-down
| menu, the form would be sent to that person? If so, please direct me to an
| example of how to accomplish that.
|
| I'm using MS FrontPage 2003 and publishing to a Windows 2003 server with IIS
| 6.
|
| Thanks
 
Top