<?xml version="1.0" encoding="utf-8"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>DaniWeb IT Discussion Community</title>
		<link>http://www.daniweb.com/forums/</link>
		<description>Tech support, programming, web development, and internet marketing community. Forums to get free computer help and support.</description>
		<language>en-US</language>
		<lastBuildDate>Wed, 23 Dec 2009 13:42:04 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>http://www.daniweb.com/alphaimages/misc/rss.jpg</url>
			<title>DaniWeb IT Discussion Community</title>
			<link>http://www.daniweb.com/forums/</link>
		</image>
		<item>
			<title><![CDATA[Disable "Enter" in radio button area in web form]]></title>
			<link>http://www.daniweb.com/forums/thread230442.html</link>
			<pubDate>Thu, 15 Oct 2009 16:34:21 GMT</pubDate>
			<description><![CDATA[I have a web form.  I want the "enter" key disabled from sending the form so users have to SUBMIT in order to send form. 
Have the following entered in the head: 
  <div class="codeblock"> <div class="spaced"> <div style="float:right; margin-right:10px"> <a...]]></description>
			<content:encoded><![CDATA[<div>I have a web form.  I want the &quot;enter&quot; key disabled from sending the form so users have to SUBMIT in order to send form.<br />
Have the following entered in the head:<br />
 <pre style="margin:20px; line-height:13px">function stopRKey(evt) { <br />
&nbsp; var evt = (evt) ? evt : ((event) ? event : null); <br />
&nbsp; var node = (evt.target) ? evt.target : ((evt.srcElement) ? evt.srcElement : null); <br />
&nbsp; if ((evt.keyCode == 13) &amp;&amp; (node.type==&quot;text&quot;))&nbsp; {return false;} <br />
} <br />
<br />
document.onkeypress = stopRKey;</pre><br />
It works great in the &quot;text&quot; form area which is in a table format.  Sample:<br />
 <pre style="margin:20px; line-height:13px">&lt;TR&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;TD align=right width=40%&gt;&lt;FONT <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; size=2&gt;&lt;B&gt;First Name:&amp;nbsp;&lt;/b&gt;&lt;/FONT&gt;&lt;/TD&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;TD &gt;&lt;INPUT name=A-firstname&gt;&lt;/TD&gt;&lt;/tr&gt;<br />
&lt;TR&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;TD align=right width=40%&gt;&lt;FONT <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; size=2&gt;&lt;B&gt;Last Name:&amp;nbsp;&lt;/b&gt;&lt;/FONT&gt;&lt;/TD&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;TD&gt;&lt;INPUT name=B-lastname&gt;&lt;/TD&gt;&lt;/TR&gt;</pre>When I get to the radio button area it doesn't work.  It is NOT in a table format.  Here's a sample of the radio button area:<br />
 <pre style="margin:20px; line-height:13px">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;p&gt; 1.&nbsp; The fundamental&nbsp; building blocks of matter are atoms and _________.&lt;BR&gt; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;INPUT type=radio value=&quot;a&quot; name=&quot;1&quot;&gt; a. mass &lt;BR&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;INPUT type=radio value=&quot;b&quot; name=&quot;1&quot;&gt; b. protons &lt;BR&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;INPUT type=radio value=&quot;c&quot; name=&quot;1&quot;&gt; c. molecules &lt;BR&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;INPUT type=radio value=&quot;d&quot; name=&quot;1&quot;&gt; d. neutrons &lt;/p&gt;</pre>Any help would be greatly appreciated.</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum117.html">JavaScript / DHTML / AJAX</category>
			<dc:creator>serendipity</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread230442.html</guid>
		</item>
		<item>
			<title>web form handler code</title>
			<link>http://www.daniweb.com/forums/thread228682.html</link>
			<pubDate>Thu, 08 Oct 2009 22:05:32 GMT</pubDate>
			<description><![CDATA[I'm presently using tripod/lycos for my website and have some long web forms on there and don't have a problem receiving the data.  I'm trying to transfer to godaddy and am having a problem with my "submit" button.  "Reset" does work.  Sometimes the "submit" button is not available (grayed out) and...]]></description>
			<content:encoded><![CDATA[<div>I'm presently using tripod/lycos for my website and have some long web forms on there and don't have a problem receiving the data.  I'm trying to transfer to godaddy and am having a problem with my &quot;submit&quot; button.  &quot;Reset&quot; does work.  Sometimes the &quot;submit&quot; button is not available (grayed out) and if it is available, it goes to an error page.  I'm not getting help from their staff .  This is what I have.  <br />
<br />
 <pre style="margin:20px; line-height:13px">&lt;FORM ACTION=&quot;/bin/script_library/form_handler_mail&quot;&nbsp; &nbsp; &nbsp; METHOD=POST ACTION=&quot;mailto:info@info.com&quot;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  &lt;INPUT type=&quot;submit&quot; value=&quot;Submit&quot; name=&quot;submit&quot;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  &lt;INPUT type=&quot;reset&quot; value=&quot;Reset&quot; name=&quot;submit&quot;&gt;</pre><br />
It works on tripod/lycos  and goes to a &quot;thank you&quot; page.<br />
ALSO, how do I direct it to go to our website....let's just call it &quot;info.com&quot; ?<br />
<br />
Thanks!</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum143.html">HTML and CSS</category>
			<dc:creator>serendipity</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread228682.html</guid>
		</item>
		<item>
			<title>Web form 3 questions: split answers, password protect, prevent copying</title>
			<link>http://www.daniweb.com/forums/thread226370.html</link>
			<pubDate>Mon, 28 Sep 2009 18:03:06 GMT</pubDate>
			<description>I am dealing with a web form that is an answer sheet for up to 120 questions.  Since this may require a lot of time for the student: 
1. Is there any way that the answer sheet can be split up and the user be recognized when he/she comes logs back in to do part B, C, etc? 
2. How do I set up a...</description>
			<content:encoded><![CDATA[<div>I am dealing with a web form that is an answer sheet for up to 120 questions.  Since this may require a lot of time for the student:<ol style="list-style-type: decimal"><li>Is there any way that the answer sheet can be split up and the user be recognized when he/she comes logs back in to do part B, C, etc?</li>
<li>How do I set up a password that users need to login to test?</li>
<li>How do I protect the sheet from being copied, at least by the ordinary person?</li>
</ol>I'm using a simple HTML code and CGI - see below<br />
 <pre style="margin:20px; line-height:13px">&lt;FORM ACTION=&quot;/bin/script_library/form_handler_mail&quot; METHOD=POST ACTION=&quot;mailto:info@info.com&quot;&gt;<br />
&lt;input type=&quot;submit&quot; value=&quot;Submit&quot; name=&quot;submit&quot;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <br />
&lt;input type=&quot;reset&quot; value=&quot;Reset&quot; name=&quot;submit&quot;&gt;</pre><br />
My computer programming knowledge is limited, just like my budget, so any help in &quot;K.I.S.S.&quot; format would be greatly appreciated.  THANKS!</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum143.html">HTML and CSS</category>
			<dc:creator>serendipity</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread226370.html</guid>
		</item>
		<item>
			<title>web form data not being sent in order presented on actual form</title>
			<link>http://www.daniweb.com/forums/thread225510.html</link>
			<pubDate>Thu, 24 Sep 2009 19:05:41 GMT</pubDate>
			<description>I have a web form with the usual personal info at the top, then questions 1 to 130 with 4 multiple choices for each question.  When the form is sent , the data is not received in the order of the form.  ie.  Answers 1-130   are in the following order:  1, 11, 12, 13, 14....19, 2, 20, 21 .....  The...</description>
			<content:encoded><![CDATA[<div>I have a web form with the usual personal info at the top, then questions 1 to 130 with 4 multiple choices for each question.  When the form is sent , the data is not received in the order of the form.  ie.  Answers 1-130   are in the following order:  1, 11, 12, 13, 14....19, 2, 20, 21 .....  The personal information at the top is according to alphabetical order of the field name.  <br />
<br />
I'm not a programmer and just know enough about computers to be dangerous.  I am using a simple script - no ASP.<br />
<br />
Is there a simple solution to this?</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum143.html">HTML and CSS</category>
			<dc:creator>serendipity</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread225510.html</guid>
		</item>
	</channel>
</rss>
