<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="https://syndication.webwiz.net/rss_namespace/">
 <channel>
  <title>ProductCart Shopping Cart Software Forums : Customize Contact Us Page with Drop Down</title>
  <link>https://forum.productcart.com/</link>
  <description><![CDATA[This is an XML content feed of; ProductCart Shopping Cart Software Forums : Customizing ProductCart : Customize Contact Us Page with Drop Down]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Sun, 12 Apr 2026 06:18:18 +0000</pubDate>
  <lastBuildDate>Sat, 28 May 2011 20:44:13 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.04</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>https://forum.productcart.com/RSS_post_feed.asp?TID=4514</WebWizForums:feedURL>
  <image>
   <title><![CDATA[ProductCart Shopping Cart Software Forums]]></title>
   <url>https://forum.productcart.com/forum_images/pc_logo_50.png</url>
   <link>https://forum.productcart.com/</link>
  </image>
  <item>
   <title><![CDATA[Customize Contact Us Page with Drop Down : I can&amp;#039;t get into directing...]]></title>
   <link>https://forum.productcart.com/customize-contact-us-page-with-drop-down_topic4514_post17637.html#17637</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forum.productcart.com/member_profile.asp?PF=290">Greg Dinger</a><br /><strong>Subject:</strong> 4514<br /><strong>Posted:</strong> 28-May-2011 at 8:44pm<br /><br />I can't get into directing you line by line, here in the forum, as to altering a complex page such as contact.asp.&nbsp; <DIV><BR>I will guide you, however, in saying that you should not make the change you made to the sendmail parameter list. Do that here, and even if you have made the appropriate matching change in the function itself, you will have broken every other part of the application that sends mail.<BR><BR>Better approach is to concatenate the new value into the message body string so that you don't tamper with the format by which you call sendmail.</DIV>]]>
   </description>
   <pubDate>Sat, 28 May 2011 20:44:13 +0000</pubDate>
   <guid isPermaLink="true">https://forum.productcart.com/customize-contact-us-page-with-drop-down_topic4514_post17637.html#17637</guid>
  </item> 
  <item>
   <title><![CDATA[Customize Contact Us Page with Drop Down : I need to add a drop down field...]]></title>
   <link>https://forum.productcart.com/customize-contact-us-page-with-drop-down_topic4514_post17636.html#17636</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forum.productcart.com/member_profile.asp?PF=145">lcameron</a><br /><strong>Subject:</strong> 4514<br /><strong>Posted:</strong> 28-May-2011 at 8:27pm<br /><br />I need to add a drop down field to the contact us page, but am not having any luck. The drop down is for users to select why they are contacting us eg. Order not received, Product enquiry, Site feedback etc. Can anyone give me some pointers what I need to add to the code?<br><br>I have so far add this line to the languages.asp file<br>dictLanguage.Add "english_Contact_11",&nbsp;&nbsp; "Why are you contacting us?"<br><br>I have added these lines to the form<br>&lt;td valign="top"&gt;&lt;%response.write dictLanguage.Item(Session("language")&amp;"_Contact_11")%&gt;&lt;/td&gt;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; &lt;td valign="top"&gt;&lt;p&gt;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;select name="Subject" id="Subject" value="&lt;%=pcf_FillFormField ("SubjectOptions", pcv_isSubjectRequired) %&gt;"&gt;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;option value="order_eta"&gt;I have not received my order&lt;/option&gt;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;option value="order_change"&gt;I wish to cancel or change my order&lt;/option&gt;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;option value="order_return"&gt;I wish to return an order&lt;/option&gt;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;option value="order_wrong"&gt;I have received the wrong book&lt;/option&gt;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;option value="order_damaged"&gt;My order arrived damaged&lt;/option&gt;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;option value="enquiry"&gt;Product enquiry&lt;/option&gt;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;option value="feedback"&gt;Site feedback&lt;/option&gt;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/select&gt;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;% pcs_RequiredImageTag "MsgTitle", pcv_isTitleRequired %&gt;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/p&gt;&lt;/td&gt;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; &lt;/tr&gt;<br><br>I have edited this<br>msg=getUserInput(request.querystring("msg"),0)<br><br>pcv_isNameRequired=True<br>pcv_isEmailRequired=True<br>pcv_isTitleRequired=True<br>pcv_isBodyRequired=True<br><font color="#ff0000">pcv_isSubjectRequired=True</font><br><br>I have edited the sendmail in contact.asp<br>call sendmail (CustName,CustEmail,scFrmEmail,MsgTitle,<font color="#ff0000">Subject,</font>MsgBody)<br><br>and assume I have a few more places I need to add it into. Can anyone help?<br><br>]]>
   </description>
   <pubDate>Sat, 28 May 2011 20:27:31 +0000</pubDate>
   <guid isPermaLink="true">https://forum.productcart.com/customize-contact-us-page-with-drop-down_topic4514_post17636.html#17636</guid>
  </item> 
 </channel>
</rss>