<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	>
<channel>
	<title>Comments on: A little HTML test</title>
	<atom:link href="http://www.kryogenix.org/days/2005/04/21/littleHtml/feed" rel="self" type="application/rss+xml" />
	<link>http://www.kryogenix.org/days/2005/04/21/littleHtml</link>
	<description>scratched tallies on the prison wall</description>
	<pubDate>Wed, 07 Jan 2009 22:20:23 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Rajnesh Sharma</title>
		<link>http://www.kryogenix.org/days/2005/04/21/littleHtml/comment-page-1#comment-15553</link>
		<dc:creator>Rajnesh Sharma</dc:creator>
		<pubDate>Sat, 02 Sep 2006 10:43:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.kryogenix.org/adpb/2005/04/21/littleHtml/#comment-15553</guid>
		<description>The HTML specifications technically define the difference between "GET" and ... If the form data would contain non-ASCII characters, then METHOD="GET" is correct other METHOD="GET" is not working properly. In METHOD="GET" send only upto 2KB (2048) characters</description>
		<content:encoded><![CDATA[<p>The HTML specifications technically define the difference between &#8220;GET&#8221; and &#8230; If the form data would contain non-ASCII characters, then METHOD=&#8221;GET&#8221; is correct other METHOD=&#8221;GET&#8221; is not working properly. In METHOD=&#8221;GET&#8221; send only upto 2KB (2048) characters</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris</title>
		<link>http://www.kryogenix.org/days/2005/04/21/littleHtml/comment-page-1#comment-4496</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Wed, 30 Nov 2005 22:36:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.kryogenix.org/adpb/2005/04/21/littleHtml/#comment-4496</guid>
		<description>I actually ran into this exact issue and thus found this article when searching for a solution. The form we had did not have a method applied, and thus was defaulting to "GET". I switched it to "POST" and the form works fine now.</description>
		<content:encoded><![CDATA[<p>I actually ran into this exact issue and thus found this article when searching for a solution. The form we had did not have a method applied, and thus was defaulting to &#8220;GET&#8221;. I switched it to &#8220;POST&#8221; and the form works fine now.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bill Mill</title>
		<link>http://www.kryogenix.org/days/2005/04/21/littleHtml/comment-page-1#comment-378</link>
		<dc:creator>Bill Mill</dc:creator>
		<pubDate>Thu, 01 Jan 1970 01:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.kryogenix.org/adpb/2005/04/21/littleHtml/#comment-378</guid>
		<description>&lt;p&gt;The form lacks a name or a method; how is it to be submitted (GET or &lt;span class="caps"&gt;POST&lt;/span&gt;)? What is it to be called by?&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>The form lacks a name or a method; how is it to be submitted (GET or <span class="caps">POST</span>)? What is it to be called by?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aurelien</title>
		<link>http://www.kryogenix.org/days/2005/04/21/littleHtml/comment-page-1#comment-379</link>
		<dc:creator>Aurelien</dc:creator>
		<pubDate>Thu, 01 Jan 1970 01:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.kryogenix.org/adpb/2005/04/21/littleHtml/#comment-379</guid>
		<description>&lt;p&gt;Hi sil,&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
I think that the problem come from the form.&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
As you don&#8217;t specifie the method, it will be &#8220;GET&#8221; by default.&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
The problem is that IE could not take more than 2043 characters on a &#8220;GET&#8221; method, fyi : &lt;a href="http://support.microsoft.com/kb/q208427/"&gt;http://support.microsoft.com/kb/q208427/&lt;/a&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
So I think this is why the form could not be submit.&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>Hi sil,</p>
<p>
I think that the problem come from the form.</p>
<p>
As you don&#8217;t specifie the method, it will be &#8220;GET&#8221; by default.</p>
<p>
The problem is that IE could not take more than 2043 characters on a &#8220;GET&#8221; method, fyi : <a href="http://support.microsoft.com/kb/q208427/">http://support.microsoft.com/kb/q208427/</a></p>
<p>
So I think this is why the form could not be submit.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aurelien</title>
		<link>http://www.kryogenix.org/days/2005/04/21/littleHtml/comment-page-1#comment-380</link>
		<dc:creator>Aurelien</dc:creator>
		<pubDate>Thu, 01 Jan 1970 01:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.kryogenix.org/adpb/2005/04/21/littleHtml/#comment-380</guid>
		<description>&lt;p&gt;Actually, this is not the only reason of the non-submitting form.&lt;/p&gt;

	&lt;p&gt;As defined by the &lt;span class="caps"&gt;WC3&lt;/span&gt;, the form submitting process is in 4 step :&lt;br /&gt;
&lt;blockquote&gt;&lt;br /&gt;
Step one: Identify the successful controls&lt;br /&gt;
Step two: Build a form data set&lt;br /&gt;
Step three: Encode the form data set&lt;br /&gt;
Step four: Submit the encoded form data set&lt;br /&gt;
&lt;/blockquote&gt;&lt;br /&gt;
Most interesting is the first step : &lt;a href="http://www.w3.org/TR/REC-html40/interact/forms.html#successful-controls"&gt;Identify the successful controls&lt;/a&gt; :&lt;br /&gt;
&lt;em&gt;A successful control is &#8220;valid&#8221; for submission. Every successful control has its control name paired with its current value as part of the submitted form data set. A successful control must be defined within a &lt;span class="caps"&gt;FORM&lt;/span&gt; element &lt;strong&gt;and must have a control name&lt;/strong&gt;.&lt;/em&gt;&lt;br /&gt;
&lt;br&gt;&lt;br /&gt;
Actually, this would not solve the problem because, we will still have the 2043 character limit with IE.&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>Actually, this is not the only reason of the non-submitting form.</p>
<p>As defined by the <span class="caps">WC3</span>, the form submitting process is in 4 step :</p>
<blockquote><p>
Step one: Identify the successful controls<br />
Step two: Build a form data set<br />
Step three: Encode the form data set<br />
Step four: Submit the encoded form data set
</p></blockquote>
<p>
Most interesting is the first step : <a href="http://www.w3.org/TR/REC-html40/interact/forms.html#successful-controls">Identify the successful controls</a> :<br />
<em>A successful control is &#8220;valid&#8221; for submission. Every successful control has its control name paired with its current value as part of the submitted form data set. A successful control must be defined within a <span class="caps">FORM</span> element <strong>and must have a control name</strong>.</em></p>
<p>
Actually, this would not solve the problem because, we will still have the 2043 character limit with IE.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Millennium</title>
		<link>http://www.kryogenix.org/days/2005/04/21/littleHtml/comment-page-1#comment-381</link>
		<dc:creator>Millennium</dc:creator>
		<pubDate>Thu, 01 Jan 1970 01:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.kryogenix.org/adpb/2005/04/21/littleHtml/#comment-381</guid>
		<description>&lt;p&gt;You haven&#8217;t provided an action for the form either. Where would the data be submitted?&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>You haven&#8217;t provided an action for the form either. Where would the data be submitted?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rory Parle</title>
		<link>http://www.kryogenix.org/days/2005/04/21/littleHtml/comment-page-1#comment-382</link>
		<dc:creator>Rory Parle</dc:creator>
		<pubDate>Thu, 01 Jan 1970 01:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.kryogenix.org/adpb/2005/04/21/littleHtml/#comment-382</guid>
		<description>&lt;p&gt;The default action for a form is the current page, yes? And the default method is &lt;span class="caps"&gt;GET&lt;/span&gt;? So it doesn&#8217;t matter that the form has neither of these attributes. The character limit doesn&#8217;t apply because the textboxes aren&#8217;t successful.&lt;/p&gt;

	&lt;p&gt;So you&#8217;re left with a form submitting no data, with &lt;span class="caps"&gt;GET&lt;/span&gt;, to the current &lt;span class="caps"&gt;URL&lt;/span&gt;. We expect that to behave the same as clicking a link to the current page. Would I be right in guessing that IE doesn&#8217;t reload the page in that case either? Basically, the result of the form submission is cached, so it doesn&#8217;t submit.&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>The default action for a form is the current page, yes? And the default method is <span class="caps">GET</span>? So it doesn&#8217;t matter that the form has neither of these attributes. The character limit doesn&#8217;t apply because the textboxes aren&#8217;t successful.</p>
<p>So you&#8217;re left with a form submitting no data, with <span class="caps">GET</span>, to the current <span class="caps">URL</span>. We expect that to behave the same as clicking a link to the current page. Would I be right in guessing that IE doesn&#8217;t reload the page in that case either? Basically, the result of the form submission is cached, so it doesn&#8217;t submit.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Graumeister</title>
		<link>http://www.kryogenix.org/days/2005/04/21/littleHtml/comment-page-1#comment-383</link>
		<dc:creator>Graumeister</dc:creator>
		<pubDate>Thu, 01 Jan 1970 01:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.kryogenix.org/adpb/2005/04/21/littleHtml/#comment-383</guid>
		<description>&lt;p&gt;I would say, the two textareas are not to be kept apart, because they both have no name. So IE tries to be neat to the user and dont send trash. With the post and get-issue I think there is a default? That should not be the problem.&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>I would say, the two textareas are not to be kept apart, because they both have no name. So IE tries to be neat to the user and dont send trash. With the post and get-issue I think there is a default? That should not be the problem.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Richard Rutter</title>
		<link>http://www.kryogenix.org/days/2005/04/21/littleHtml/comment-page-1#comment-384</link>
		<dc:creator>Richard Rutter</dc:creator>
		<pubDate>Thu, 01 Jan 1970 01:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.kryogenix.org/adpb/2005/04/21/littleHtml/#comment-384</guid>
		<description>&lt;p&gt;There are two things that are stopping IE submitting the form.&lt;/p&gt;

	&lt;p&gt;The first is the lack of names for the textareas. All form controls (except submit buttons) require a &lt;code&gt;name&lt;/code&gt; or &lt;code&gt;id&lt;/code&gt;. Note that Aurelien was wrong when &lt;a href="http://www.kryogenix.org/days/2005/04/21/littleHtml#au1114099941.88"&gt;he said&lt;/a&gt; the form element itself requires naming as well.&lt;/p&gt;

	&lt;p&gt;The second issue is the length of the generated &lt;span class="caps"&gt;URL&lt;/span&gt;. The form will be submitted as a &lt;code&gt;GET&lt;/code&gt; by default (the &lt;code&gt;method&lt;/code&gt; attribute is not &lt;em&gt;required&lt;/em&gt;) and the &lt;span class="caps"&gt;URL&lt;/span&gt; generated would exceed the 2048 character limit set by Internet Explorer. From &lt;a href="http://www.boutell.com/newfaq/misc/urllength.html"&gt;Boutell&lt;/a&gt; :&lt;/p&gt;

	&lt;blockquote&gt;&lt;p&gt;Although the &lt;a href="http://www.w3.org/Protocols/rfc2616/rfc2616.html"&gt;specification&lt;/a&gt; of the &lt;span class="caps"&gt;HTTP&lt;/span&gt; protocol does not specify any maximum length, the practical limit is 2,083 characters, with no more than 2,048 characters in the path portion of the &lt;span class="caps"&gt;URL&lt;/span&gt;. These are the &lt;a href="http://support.microsoft.com/kb/q208427/"&gt;restrictions currently enforced by Microsoft Interet Explorer&lt;/a&gt;.&lt;/p&gt;&lt;/blockquote&gt;

	&lt;p&gt;The missing &lt;span class="caps"&gt;ACTION&lt;/span&gt;, which is a &lt;a href="http://www.w3.org/TR/REC-html40/interact/forms.html#edef-FORM"&gt;required attribute&lt;/a&gt; of &lt;code&gt;form&lt;/code&gt;, is not actually a factor preventing IE from submitting the form.&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>There are two things that are stopping IE submitting the form.</p>
<p>The first is the lack of names for the textareas. All form controls (except submit buttons) require a <code>name</code> or <code>id</code>. Note that Aurelien was wrong when <a href="http://www.kryogenix.org/days/2005/04/21/littleHtml#au1114099941.88">he said</a> the form element itself requires naming as well.</p>
<p>The second issue is the length of the generated <span class="caps">URL</span>. The form will be submitted as a <code>GET</code> by default (the <code>method</code> attribute is not <em>required</em>) and the <span class="caps">URL</span> generated would exceed the 2048 character limit set by Internet Explorer. From <a href="http://www.boutell.com/newfaq/misc/urllength.html">Boutell</a> :</p>
<blockquote><p>Although the <a href="http://www.w3.org/Protocols/rfc2616/rfc2616.html">specification</a> of the <span class="caps">HTTP</span> protocol does not specify any maximum length, the practical limit is 2,083 characters, with no more than 2,048 characters in the path portion of the <span class="caps">URL</span>. These are the <a href="http://support.microsoft.com/kb/q208427/">restrictions currently enforced by Microsoft Interet Explorer</a>.</p>
</blockquote>
<p>The missing <span class="caps">ACTION</span>, which is a <a href="http://www.w3.org/TR/REC-html40/interact/forms.html#edef-FORM">required attribute</a> of <code>form</code>, is not actually a factor preventing IE from submitting the form.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sil</title>
		<link>http://www.kryogenix.org/days/2005/04/21/littleHtml/comment-page-1#comment-385</link>
		<dc:creator>sil</dc:creator>
		<pubDate>Thu, 01 Jan 1970 01:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.kryogenix.org/adpb/2005/04/21/littleHtml/#comment-385</guid>
		<description>&lt;p&gt;Aurelien gets the pont for getting it right first, and Mr Rutter gets a bonus point for explaiing in more detail. (The missing names on the textareas were there in my test case; I forgot to add them to the test above). It took me Some Time to work out why it wasn&#8217;t working :)&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>Aurelien gets the pont for getting it right first, and Mr Rutter gets a bonus point for explaiing in more detail. (The missing names on the textareas were there in my test case; I forgot to add them to the test above). It took me Some Time to work out why it wasn&#8217;t working :)</p>
]]></content:encoded>
	</item>
</channel>
</rss>
