<?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: How to Integrate PayPal Donate Button into ASP.NET Page</title>
	<atom:link href="http://www.devtheweb.net/blog/2010/01/21/how-to-integrate-paypal-donate-button-into-asp-net-page/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.devtheweb.net/blog/2010/01/21/how-to-integrate-paypal-donate-button-into-asp-net-page/</link>
	<description></description>
	<lastBuildDate>Thu, 20 Oct 2011 13:37:10 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: ashish</title>
		<link>http://www.devtheweb.net/blog/2010/01/21/how-to-integrate-paypal-donate-button-into-asp-net-page/#comment-80</link>
		<dc:creator>ashish</dc:creator>
		<pubDate>Thu, 20 Oct 2011 13:37:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.devtheweb.net/blog/?p=680#comment-80</guid>
		<description>I am using PayPal subscription button with 4 subscription options. 
I have used required field control for other controls on the same page, so when I click on Subscribe button it restrict form from posting to paypal account.
So I replaced following code



WITH

&lt;a href=&quot;https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=Y1TOJTYQ2ALDJ&amp;os0=document.getelementbyid(os0).value&quot; rel=&quot;nofollow&quot;&gt;
                            

&lt;/a&gt;
                              

Now I want to add selected option in the query string. 

https://www.paypal.com/cgi-bin/webscr?cmd=_s-lick&amp;hosted_button_id=Y1TOJTYQ2ALDJ&amp;os0=Silver Membership

In above query string I want to set selected option for os0 parameter. 

My current Code:


....


                                



Memberships

Registration - One month : $1.00USD - monthly
Trial Membership : $25.00USD - monthly
Silver Membership : $250.00USD - yearly
Gold Membership : $400.00USD - yearly
 



     
&lt;a href=&quot;https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=Y1TOJTYQ2ALDJ&amp;os0=document.getelementbyid(os0).value&quot; rel=&quot;nofollow&quot;&gt;
                            

&lt;/a&gt;


.....



So how can I add selected option in query string? or Is there any way to post a &quot;frmPayPal&quot; form only?

Thanks in advance</description>
		<content:encoded><![CDATA[<p>I am using PayPal subscription button with 4 subscription options.<br />
I have used required field control for other controls on the same page, so when I click on Subscribe button it restrict form from posting to paypal account.<br />
So I replaced following code</p>
<p>WITH</p>
<p><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=Y1TOJTYQ2ALDJ&amp;os0=document.getelementbyid(os0).value" rel="nofollow"></p>
<p></a></p>
<p>Now I want to add selected option in the query string. </p>
<p><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-lick&#038;hosted_button_id=Y1TOJTYQ2ALDJ&#038;os0=Silver" rel="nofollow">https://www.paypal.com/cgi-bin/webscr?cmd=_s-lick&#038;hosted_button_id=Y1TOJTYQ2ALDJ&#038;os0=Silver</a> Membership</p>
<p>In above query string I want to set selected option for os0 parameter. </p>
<p>My current Code:</p>
<p>&#8230;.</p>
<p>Memberships</p>
<p>Registration &#8211; One month : $1.00USD &#8211; monthly<br />
Trial Membership : $25.00USD &#8211; monthly<br />
Silver Membership : $250.00USD &#8211; yearly<br />
Gold Membership : $400.00USD &#8211; yearly</p>
<p><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=Y1TOJTYQ2ALDJ&amp;os0=document.getelementbyid(os0).value" rel="nofollow"></p>
<p></a></p>
<p>&#8230;..</p>
<p>So how can I add selected option in query string? or Is there any way to post a &#8220;frmPayPal&#8221; form only?</p>
<p>Thanks in advance</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ashish</title>
		<link>http://www.devtheweb.net/blog/2010/01/21/how-to-integrate-paypal-donate-button-into-asp-net-page/#comment-79</link>
		<dc:creator>ashish</dc:creator>
		<pubDate>Thu, 20 Oct 2011 05:03:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.devtheweb.net/blog/?p=680#comment-79</guid>
		<description>Hi,
Thanks for the post. I have another issue with paypal subscribe button. I have subscribe button with 4 subscription options (In html drop down list). I want to add this selected option in query string. So that my query string will look like this:

https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=Y1TOJTYQ2ALDJ&amp;os0=Silver Membership

In above query string I want to set selected option for os0 parameter. I am using same code as you have explain above.

My Code:


                                



Memberships

Registration - One month : $1.00USD - monthly
Trial Membership : $25.00USD - monthly
Silver Membership : $250.00USD - yearly
Gold Membership : $400.00USD - yearly
 




                            
&lt;a href=&quot;https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=Y1TOJTYQ2ALDJ&amp;os0=document.getelementbyid(os0).value&quot; rel=&quot;nofollow&quot;&gt;
                            

&lt;/a&gt;


Kindly suggest the way to pass subscription option through the query string.

Thanks in advance.</description>
		<content:encoded><![CDATA[<p>Hi,<br />
Thanks for the post. I have another issue with paypal subscribe button. I have subscribe button with 4 subscription options (In html drop down list). I want to add this selected option in query string. So that my query string will look like this:</p>
<p><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&#038;hosted_button_id=Y1TOJTYQ2ALDJ&#038;os0=Silver" rel="nofollow">https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&#038;hosted_button_id=Y1TOJTYQ2ALDJ&#038;os0=Silver</a> Membership</p>
<p>In above query string I want to set selected option for os0 parameter. I am using same code as you have explain above.</p>
<p>My Code:</p>
<p>Memberships</p>
<p>Registration &#8211; One month : $1.00USD &#8211; monthly<br />
Trial Membership : $25.00USD &#8211; monthly<br />
Silver Membership : $250.00USD &#8211; yearly<br />
Gold Membership : $400.00USD &#8211; yearly</p>
<p><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=Y1TOJTYQ2ALDJ&amp;os0=document.getelementbyid(os0).value" rel="nofollow"></p>
<p></a></p>
<p>Kindly suggest the way to pass subscription option through the query string.</p>
<p>Thanks in advance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Igor</title>
		<link>http://www.devtheweb.net/blog/2010/01/21/how-to-integrate-paypal-donate-button-into-asp-net-page/#comment-78</link>
		<dc:creator>Igor</dc:creator>
		<pubDate>Wed, 22 Jun 2011 22:54:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.devtheweb.net/blog/?p=680#comment-78</guid>
		<description>Great Post! Thx a lot.</description>
		<content:encoded><![CDATA[<p>Great Post! Thx a lot.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Richard</title>
		<link>http://www.devtheweb.net/blog/2010/01/21/how-to-integrate-paypal-donate-button-into-asp-net-page/#comment-77</link>
		<dc:creator>Richard</dc:creator>
		<pubDate>Thu, 12 Aug 2010 04:24:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.devtheweb.net/blog/?p=680#comment-77</guid>
		<description>Works like a charm. Thank you!!</description>
		<content:encoded><![CDATA[<p>Works like a charm. Thank you!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Craig</title>
		<link>http://www.devtheweb.net/blog/2010/01/21/how-to-integrate-paypal-donate-button-into-asp-net-page/#comment-76</link>
		<dc:creator>Craig</dc:creator>
		<pubDate>Thu, 20 May 2010 11:47:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.devtheweb.net/blog/?p=680#comment-76</guid>
		<description>Worked great, thanks!</description>
		<content:encoded><![CDATA[<p>Worked great, thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gulam</title>
		<link>http://www.devtheweb.net/blog/2010/01/21/how-to-integrate-paypal-donate-button-into-asp-net-page/#comment-75</link>
		<dc:creator>gulam</dc:creator>
		<pubDate>Sun, 21 Feb 2010 17:12:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.devtheweb.net/blog/?p=680#comment-75</guid>
		<description>nice</description>
		<content:encoded><![CDATA[<p>nice</p>
]]></content:encoded>
	</item>
</channel>
</rss>

