Your script needs to look at whatever criteria (form field contents?) is
used to discriminate between files, and choose the file name
accordingly.
For example: (using a select field in the form for the criteria)
<%
Select Case request.form("selectfieldname")
Case "A"
Filename = "acasia.txt"
Case "B"
Filename = "Bergundy.txt"
Case Else
Filename = "Miscellany.txt"
End Select
'send form data to Filename
--
Ron Symonds - Microsoft MVP (Expression)
Reply only to group - emails will be deleted unread.
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.