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.