I've noticed two more issues since my first post.
1. When I click on submit for my form, the preview window pops up (properly displayed).
2. The drop down list for the font displays the generic page not found info (truncated due to small size).
What I see is this:
The page cannot be displayed |
| The page you are looking for is currently unavailable. The Web site might be experiencing technical difficulties, or you may need to adjust your browser |
The above is inside the drop down list for the font selection- other drop downs are ok.
I have many fields to collect date from, so I use the following code:
For Each FormElement in Request.Form 'Check all required fields
Select Case FormElement
Case "fname"
strFName=Request.Form(FormElement)
......
Case "text"
strText=Request.Form(FormElement)'-textarea associated with the RTE
.......
End Select
Next
The first line in my asp file differs from yours:
<script Language=VBScript runat="server" >