<?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: Making &#8220;Post&#8221; and &#8220;Get&#8221; forms from SharePoint&#8217;s pages</title>
	<atom:link href="http://www.sharepointboris.net/2008/09/making-post-and-get-forms-from-sharepoints-pages/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.sharepointboris.net/2008/09/making-post-and-get-forms-from-sharepoints-pages/</link>
	<description>and Boris Gomiunik</description>
	<lastBuildDate>Mon, 14 Nov 2011 21:38:16 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Sean Corcoran</title>
		<link>http://www.sharepointboris.net/2008/09/making-post-and-get-forms-from-sharepoints-pages/#comment-332</link>
		<dc:creator>Sean Corcoran</dc:creator>
		<pubDate>Thu, 31 Mar 2011 20:08:18 +0000</pubDate>
		<guid isPermaLink="false">http://boris.gomiunik.net/2008/09/making-post-and-get-forms-from-sharepoints-pages/#comment-332</guid>
		<description>I&#039;m having a tough time.  If you could look at my code I would appreciate it.  Thanks.</description>
		<content:encoded><![CDATA[<p>I&#8217;m having a tough time.  If you could look at my code I would appreciate it.  Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sean Corcoran</title>
		<link>http://www.sharepointboris.net/2008/09/making-post-and-get-forms-from-sharepoints-pages/#comment-331</link>
		<dc:creator>Sean Corcoran</dc:creator>
		<pubDate>Thu, 31 Mar 2011 20:06:11 +0000</pubDate>
		<guid isPermaLink="false">http://boris.gomiunik.net/2008/09/making-post-and-get-forms-from-sharepoints-pages/#comment-331</guid>
		<description>The submit button is not showing up.  It is also not sending me the information to my email address.  


  function submitForm(containerElement) {
      var theForm = document.createElement(&quot;form&quot;);
          theForm.action = &#039;mailto:iknowmyemailaddressgoeshere&#039;;
          theForm.method = &quot;post&quot;;
          theForm.innerHTML = document.getElementById(containerElement).outerHTML;
      var formToSubmit = document.body.appendChild(theForm);
          formToSubmit.submit();
  }
  


  
Your Name:



Your E-mail:




Phone Number:




Suggested Name for School:




Explanation of suggested name:






Submit</description>
		<content:encoded><![CDATA[<p>The submit button is not showing up.  It is also not sending me the information to my email address.  </p>
<p>  function submitForm(containerElement) {<br />
      var theForm = document.createElement(&#8220;form&#8221;);<br />
          theForm.action = &#8216;mailto:iknowmyemailaddressgoeshere&#8217;;<br />
          theForm.method = &#8220;post&#8221;;<br />
          theForm.innerHTML = document.getElementById(containerElement).outerHTML;<br />
      var formToSubmit = document.body.appendChild(theForm);<br />
          formToSubmit.submit();<br />
  }</p>
<p>Your Name:</p>
<p>Your E-mail:</p>
<p>Phone Number:</p>
<p>Suggested Name for School:</p>
<p>Explanation of suggested name:</p>
<p>Submit</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gopal</title>
		<link>http://www.sharepointboris.net/2008/09/making-post-and-get-forms-from-sharepoints-pages/#comment-330</link>
		<dc:creator>Gopal</dc:creator>
		<pubDate>Thu, 10 Mar 2011 22:56:44 +0000</pubDate>
		<guid isPermaLink="false">http://boris.gomiunik.net/2008/09/making-post-and-get-forms-from-sharepoints-pages/#comment-330</guid>
		<description>Hi Boris,

Thanks for the nice post. This works amazing in IE. As you suggested, I placed document.getElementsByName(&#039;name&#039;)[1].value = document.getElementsByName(&#039;name&#039;)[0].value; line below var formToSubmit = document.body.appendChild(theForm); line. But I am getting document.getElementsByName(&#039;name&#039;)[1].value is undefined error. I am using FF 3.6.15

Thanks,
Gopal</description>
		<content:encoded><![CDATA[<p>Hi Boris,</p>
<p>Thanks for the nice post. This works amazing in IE. As you suggested, I placed document.getElementsByName(&#8216;name&#8217;)[1].value = document.getElementsByName(&#8216;name&#8217;)[0].value; line below var formToSubmit = document.body.appendChild(theForm); line. But I am getting document.getElementsByName(&#8216;name&#8217;)[1].value is undefined error. I am using FF 3.6.15</p>
<p>Thanks,<br />
Gopal</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Frank Mcgill</title>
		<link>http://www.sharepointboris.net/2008/09/making-post-and-get-forms-from-sharepoints-pages/#comment-329</link>
		<dc:creator>Frank Mcgill</dc:creator>
		<pubDate>Mon, 28 Feb 2011 05:44:07 +0000</pubDate>
		<guid isPermaLink="false">http://boris.gomiunik.net/2008/09/making-post-and-get-forms-from-sharepoints-pages/#comment-329</guid>
		<description>I&#039;m using this example with Paypal code on sharepoint WSS 3.0 site. But it doesn&#039;t seems like working!

Pay Now paypal button shows up as per their code, but clicking on the button doesn&#039;t seems to be working. Any ideas</description>
		<content:encoded><![CDATA[<p>I&#8217;m using this example with Paypal code on sharepoint WSS 3.0 site. But it doesn&#8217;t seems like working!</p>
<p>Pay Now paypal button shows up as per their code, but clicking on the button doesn&#8217;t seems to be working. Any ideas</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jag</title>
		<link>http://www.sharepointboris.net/2008/09/making-post-and-get-forms-from-sharepoints-pages/#comment-327</link>
		<dc:creator>Jag</dc:creator>
		<pubDate>Fri, 03 Dec 2010 17:27:26 +0000</pubDate>
		<guid isPermaLink="false">http://boris.gomiunik.net/2008/09/making-post-and-get-forms-from-sharepoints-pages/#comment-327</guid>
		<description>Yann
Your trick is simply wonderful.. It saved a lot of time on my side..</description>
		<content:encoded><![CDATA[<p>Yann<br />
Your trick is simply wonderful.. It saved a lot of time on my side..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nguyen</title>
		<link>http://www.sharepointboris.net/2008/09/making-post-and-get-forms-from-sharepoints-pages/#comment-326</link>
		<dc:creator>Nguyen</dc:creator>
		<pubDate>Tue, 24 Aug 2010 13:56:16 +0000</pubDate>
		<guid isPermaLink="false">http://boris.gomiunik.net/2008/09/making-post-and-get-forms-from-sharepoints-pages/#comment-326</guid>
		<description>Yann,

If there is any way that we can hidden scroll bars under web viewer page? it shows dual scroll bars from main sharepoint site and hidden FORM page website? Please advise and thanks so much to share with us with this tricks?...:)...:)..!!!</description>
		<content:encoded><![CDATA[<p>Yann,</p>
<p>If there is any way that we can hidden scroll bars under web viewer page? it shows dual scroll bars from main sharepoint site and hidden FORM page website? Please advise and thanks so much to share with us with this tricks?&#8230;:)&#8230;:)..!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Doug</title>
		<link>http://www.sharepointboris.net/2008/09/making-post-and-get-forms-from-sharepoints-pages/#comment-325</link>
		<dc:creator>Doug</dc:creator>
		<pubDate>Wed, 02 Dec 2009 18:37:41 +0000</pubDate>
		<guid isPermaLink="false">http://boris.gomiunik.net/2008/09/making-post-and-get-forms-from-sharepoints-pages/#comment-325</guid>
		<description>Submit
I think the above should be:
Submit</description>
		<content:encoded><![CDATA[<p>Submit<br />
I think the above should be:<br />
Submit</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gagan</title>
		<link>http://www.sharepointboris.net/2008/09/making-post-and-get-forms-from-sharepoints-pages/#comment-324</link>
		<dc:creator>Gagan</dc:creator>
		<pubDate>Fri, 20 Nov 2009 12:16:09 +0000</pubDate>
		<guid isPermaLink="false">http://boris.gomiunik.net/2008/09/making-post-and-get-forms-from-sharepoints-pages/#comment-324</guid>
		<description>Hi Boris...I am using google checkout button for donenation purpose. Like you mentioned everything is working fine in IE without any modification upto 3. To make it work in chrome and other Browsers. I have updated it with other input fields values too. Its working fine in chrome but not in FF. Any guess why its not working as expected.
When i alert(document.getElementsByName(&#039;name&#039;).length) in FF it returns only 1 where as in case of chrome it returns 2.</description>
		<content:encoded><![CDATA[<p>Hi Boris&#8230;I am using google checkout button for donenation purpose. Like you mentioned everything is working fine in IE without any modification upto 3. To make it work in chrome and other Browsers. I have updated it with other input fields values too. Its working fine in chrome but not in FF. Any guess why its not working as expected.<br />
When i alert(document.getElementsByName(&#8216;name&#8217;).length) in FF it returns only 1 where as in case of chrome it returns 2.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Boris Gomiunik</title>
		<link>http://www.sharepointboris.net/2008/09/making-post-and-get-forms-from-sharepoints-pages/#comment-323</link>
		<dc:creator>Boris Gomiunik</dc:creator>
		<pubDate>Fri, 06 Nov 2009 17:30:57 +0000</pubDate>
		<guid isPermaLink="false">http://boris.gomiunik.net/2008/09/making-post-and-get-forms-from-sharepoints-pages/#comment-323</guid>
		<description>Glad I could help :)</description>
		<content:encoded><![CDATA[<p>Glad I could help <img src='http://www.sharepointboris.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brett</title>
		<link>http://www.sharepointboris.net/2008/09/making-post-and-get-forms-from-sharepoints-pages/#comment-322</link>
		<dc:creator>Brett</dc:creator>
		<pubDate>Wed, 04 Nov 2009 03:21:48 +0000</pubDate>
		<guid isPermaLink="false">http://boris.gomiunik.net/2008/09/making-post-and-get-forms-from-sharepoints-pages/#comment-322</guid>
		<description>You are my saviour!</description>
		<content:encoded><![CDATA[<p>You are my saviour!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

