<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1013255" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1013255</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/forms#comment-1077413</link>
    <description> &lt;p&gt;thanks very much.&lt;/p&gt;
 </description>
     <pubDate>Sun, 28 Jan 2001 21:04:25 +0000</pubDate>
 <dc:creator>webstar</dc:creator>
 <guid isPermaLink="false">comment 1077413 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/forms#comment-1077405</link>
    <description> &lt;p&gt;That would work if you don&#039;t have any textarea fields. For multiple one-line values, you can use something like this:&lt;/p&gt;
&lt;p&gt;&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;location.href = &amp;quot;mailto:abc@def.com?BODY=Value1=&amp;quot;+document.forms(0).mytext1.value+&amp;quot;\nValue2=&amp;quot;+document.forms(0).mytext2.value+&amp;quot;\nValue3=&amp;quot;+document.forms(0).mytext3.value+&amp;quot;\nValue4=&amp;quot;+document.forms(0).mytext4.value+&amp;quot;\nValue5=&amp;quot;+document.forms(0).mytext5.value&lt;/code&gt;&lt;/div&gt;&#039;&lt;/p&gt;
&lt;p&gt;You mail&#039;ll look something like:&lt;/p&gt;
&lt;p&gt;Value1=blahblah&lt;br /&gt;
Value2=blahblah&lt;br /&gt;
Value3=blahblah&lt;br /&gt;
Value4=blahblah&lt;br /&gt;
Value5=blahblah&lt;/p&gt;
&lt;p&gt;For sending mail in general, I strongly recommend PHP (if you have it on your server). Look here for a good tutorial:http://www.thickbook.com/extra/php_email.phtml&lt;/p&gt;
&lt;p&gt;Jon.&lt;/p&gt;
 </description>
     <pubDate>Sun, 28 Jan 2001 19:56:01 +0000</pubDate>
 <dc:creator>jonsteele</dc:creator>
 <guid isPermaLink="false">comment 1077405 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/forms#comment-1077390</link>
    <description> &lt;p&gt;jonsteele &lt;/p&gt;
&lt;p&gt;Yes, that can be done. then if i understand right would i have to write functions for all the fields?&lt;br /&gt;
Another thing is.....the user must have all the email options set up right for the mailto: to work. so i guess i&#039;ll wait till learn cold fusion or cgi.&lt;br /&gt;
thanks for the tip&lt;/p&gt;
 </description>
     <pubDate>Sun, 28 Jan 2001 15:38:14 +0000</pubDate>
 <dc:creator>webstar</dc:creator>
 <guid isPermaLink="false">comment 1077390 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/forms#comment-1077322</link>
    <description> &lt;p&gt;couldn&#039;t you add the fields to the mailto manually? using BODY?&lt;/p&gt;
&lt;p&gt;&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&amp;amp;lt;script&amp;amp;gt;&lt;br /&gt;function sendmail(){&lt;br /&gt;location.href = &amp;quot;mailto:abc@def.com?BODY=&amp;quot;+document.forms(0).mytext.value;&lt;br /&gt;}&lt;br /&gt;&amp;amp;lt;/script&amp;amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;form&amp;gt;&lt;br /&gt;&amp;lt;textarea cols=&amp;quot;40&amp;quot; rows=&amp;quot;20&amp;quot; name=&amp;quot;mytext&amp;quot;&amp;gt;&amp;lt;/textarea&amp;gt;&lt;br /&gt;&amp;lt;input type=&amp;quot;button&amp;quot; onclick=&amp;quot;sendmail()&amp;quot;&amp;gt;&lt;br /&gt;&amp;lt;/form&amp;gt;&lt;/code&gt;&lt;/div&gt;&#039;&lt;/p&gt;
&lt;p&gt;This might bring up other problems (like carriage returns for long text) but those can be fixed using othermethods. If you have one line fields, then its ok.&lt;/p&gt;
&lt;p&gt;Jon.&lt;/p&gt;
 </description>
     <pubDate>Fri, 26 Jan 2001 20:44:01 +0000</pubDate>
 <dc:creator>jonsteele</dc:creator>
 <guid isPermaLink="false">comment 1077322 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/forms#comment-1077089</link>
    <description> &lt;p&gt;Jack&lt;br /&gt;
You can set up the default email whatever you want by changing the &#039;programs&#039; menu in internet options of IE.&lt;br /&gt;
I found this one site &lt;a href=&quot;http://www.response-o-matic.com&quot; class=&quot;bb-url&quot;&gt;http://www.response-o-matic.com&lt;/a&gt;&lt;br /&gt;
they&#039;ll process you forms for free and the form data is emailed to you. I tried it but it is VERY  slow. so for now, i just have my email address on the site, no forms.&lt;br /&gt;
Thanks&lt;/p&gt;
 </description>
     <pubDate>Tue, 23 Jan 2001 14:46:03 +0000</pubDate>
 <dc:creator>webstar</dc:creator>
 <guid isPermaLink="false">comment 1077089 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/forms#comment-1077079</link>
    <description> &lt;p&gt;webstar,&lt;/p&gt;
&lt;p&gt;not that I know of.&lt;br /&gt;
It is Netscape that comes up with the default mail-program, right?&lt;/p&gt;
 </description>
     <pubDate>Tue, 23 Jan 2001 08:27:53 +0000</pubDate>
 <dc:creator>Jack Michaelson</dc:creator>
 <guid isPermaLink="false">comment 1077079 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/forms#comment-1077059</link>
    <description> &lt;p&gt;Jack&lt;/p&gt;
&lt;p&gt;So theres no way to solve this problem without having a ..cgi/bin dir ? I wanted something simpler.&lt;br /&gt;
Thanks anyway.&lt;/p&gt;
 </description>
     <pubDate>Mon, 22 Jan 2001 21:57:28 +0000</pubDate>
 <dc:creator>webstar</dc:creator>
 <guid isPermaLink="false">comment 1077059 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/forms#comment-1077057</link>
    <description> &lt;p&gt;Yeah, I&#039;ve had the same problem and this is how I solved it:&lt;/p&gt;
&lt;p&gt;1. I went to &lt;a href=&quot;http://worldwidemart.com/scripts/&quot; class=&quot;bb-url&quot;&gt;Matt&#039;s Script Archive&lt;/a&gt; and downloaded formscript.pl&lt;/p&gt;
&lt;p&gt;2. I altered the file to my needs&lt;/p&gt;
&lt;p&gt;3. Loaded the formscript.pl up to my cgi-bin dir.&lt;/p&gt;
&lt;p&gt;4. changed the action into &lt;strong&gt;action=../cgi-bin/formscript.pl&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;5. tested it&lt;/p&gt;
&lt;p&gt;6. noticed that the problem was solved&lt;/p&gt;
&lt;p&gt;7. shouted out all kind of nice words!&lt;/p&gt;
 </description>
     <pubDate>Mon, 22 Jan 2001 20:53:57 +0000</pubDate>
 <dc:creator>Jack Michaelson</dc:creator>
 <guid isPermaLink="false">comment 1077057 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
