I've got some custom text posting fields in post.asp that don't show when you select Preview. How can I modify pop_preview.asp to show these fields which get added to Message. This is an example of the code in post.aspIf strRqMethod = "Topic" then
Response.Write " <tr>" & vbNewLine & _
" <td bgColor=""" & strPopUpTableColor & """ noWrap vAlign=""middle"" align=""right""><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """><b>Application Type: </b></font></td>" & vbNewLine & _
" <td bgColor=""" & strPopUpTableColor & """><select name=""Apptype"" size=""1"">" & vbNewLine
Response.Write "<option value=""New"">New</option>" & vbNewLine & _
"<option value=""Review"">Review</option>" & vbNewLine & _
"<option value=""Revalidation"">Revalidation</option>" & vbNewLine & _
"<option value=""Upgrade"">Upgrade</option>" & vbNewLine & _
"<option value=""Downgrade"">Downgrade</option>" & vbNewLine
Response.Write " </select></font>" & vbNewLine & _
" </td></tr>" & vbNewLine
And this is how it looks in post_info.asp:'**************CUSTOM POST FIELDS ************
dim ApplicantMessage
ApplicantMessage = "Name: " & Request.Form("Subject") & vbNewLine
ApplicantMessage = ApplicantMessage & "Level: " & Request.Form("Level") & vbNewLine
ApplicantMessage = ApplicantMessage & "Type: " & Request.Form("Apptype") & vbNewLine
ApplicantMessage = ApplicantMessage & "Case Officer: " & Request.Form("CaseOfficer") & vbNewLine
ApplicantMessage = ApplicantMessage & "Customer: " & Request.Form("Customer") & vbNewLine
ApplicantMessage = ApplicantMessage & "Clearance#: " & Request.Form("Clearanceno") & vbNewLine
txtMessage = ChkString(ApplicantMessage & vbNewLine & "Additional Details: " & Request.Form("Message"),"message")
'******************************
txtLocation = ChkString(Request.Form("Location"),"message")
txtSubject = ChkString(Request.Form("Subject"),"SQLString")
dateHolder = DatetoStr(CDate(Request.Form("event_date")))
I think the javascript at the top of pop_preview.asp pulls the info out of the form but how can I add what is in those extra fields?