<?xml version="1.0"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>ShareThis Forums Tag: URL</title>
<link>http://forums.sharethis.com/</link>
<description>ShareThis Forums Tag: URL</description>
<language>en</language>
<pubDate>Wed, 07 Jan 2009 04:21:29 +0000</pubDate>

<item>
<title>jak119 on "Dynamically Change URL Sent"</title>
<link>http://forums.sharethis.com/topic/dynamically-change-url-sent#post-930</link>
<pubDate>Wed, 12 Nov 2008 22:18:42 +0000</pubDate>
<dc:creator>jak119</dc:creator>
<guid isPermaLink="false">930@http://forums.sharethis.com/</guid>
<description>&#60;p&#62;That theory does in fact work.
&#60;/p&#62;</description>
</item>
<item>
<title>jak119 on "Dynamically Change URL Sent"</title>
<link>http://forums.sharethis.com/topic/dynamically-change-url-sent#post-927</link>
<pubDate>Tue, 11 Nov 2008 21:29:13 +0000</pubDate>
<dc:creator>jak119</dc:creator>
<guid isPermaLink="false">927@http://forums.sharethis.com/</guid>
<description>&#60;p&#62;Can anyone offer me any help?
&#60;/p&#62;</description>
</item>
<item>
<title>jak119 on "Dynamically Change URL Sent"</title>
<link>http://forums.sharethis.com/topic/dynamically-change-url-sent#post-924</link>
<pubDate>Tue, 11 Nov 2008 19:16:23 +0000</pubDate>
<dc:creator>jak119</dc:creator>
<guid isPermaLink="false">924@http://forums.sharethis.com/</guid>
<description>&#60;p&#62;I'm a bit of a new(b) at using an API but I'd like to change the url that sharethis is sharing since I've got the widget on a database driven .asp page. I would be able to create a permalink of sorts provided I could pass some of the data from the database through to the widget. However since I'm not entirely sure how this API works would someone be able to provide me an example of doing something along these lines? Is it even possible?&#60;/p&#62;
&#60;p&#62;My thoughts for the code are something like this&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;script language=&#38;quot;javascript&#38;quot; type=&#38;quot;text/javascript&#38;quot;&#38;gt;
SHARETHIS.addEntry({
url: &#38;#39;http://www.designconnection.com/plan.asp?plan=&#38;lt;%=rs(&#38;quot;plannumber&#38;quot;)%&#38;gt;&#38;#39;
}, {button:true} );
&#38;lt;/script&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Will that work or am I completely wrong?&#60;/p&#62;
&#60;p&#62;Also thank you in advance for any help you can provide me.
&#60;/p&#62;</description>
</item>
<item>
<title>ShareThisSupport on "Any control over URL shared?"</title>
<link>http://forums.sharethis.com/topic/any-control-over-url-shared#post-421</link>
<pubDate>Mon, 09 Jun 2008 20:46:15 +0000</pubDate>
<dc:creator>ShareThisSupport</dc:creator>
<guid isPermaLink="false">421@http://forums.sharethis.com/</guid>
<description>&#60;p&#62;Hello! You can specify the URL being shared with the 'url' object property of the .addEntry function of the ShareThis API. For more information see &#60;a href=&#34;http://sharethis.com/publisher?type=stapi&#34; rel=&#34;nofollow&#34;&#62;http://sharethis.com/publisher?type=stapi&#60;/a&#62; and &#60;a href=&#34;http://support.sharethis.com/developers&#34; rel=&#34;nofollow&#34;&#62;http://support.sharethis.com/developers&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>etherealgrrl on "Any control over URL shared?"</title>
<link>http://forums.sharethis.com/topic/any-control-over-url-shared#post-415</link>
<pubDate>Fri, 06 Jun 2008 17:08:50 +0000</pubDate>
<dc:creator>etherealgrrl</dc:creator>
<guid isPermaLink="false">415@http://forums.sharethis.com/</guid>
<description>&#60;p&#62;Hi!  I'm wondering if you have any control over the URL that's shared.  I wanted to add a &#34;ShareThis&#34; button to the confirmation page of a contest, but I think that would take people to the confirmation page.. not the contest entry form page.
&#60;/p&#62;</description>
</item>
<item>
<title>shvoong on "Dynamicaly changing the url from C#"</title>
<link>http://forums.sharethis.com/topic/changing-the-url-dynamicaly#post-309</link>
<pubDate>Tue, 22 Apr 2008 15:17:09 +0000</pubDate>
<dc:creator>shvoong</dc:creator>
<guid isPermaLink="false">309@http://forums.sharethis.com/</guid>
<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;My page (where the ShareThis button resides) is within an aspx page within a MasterPage (asp.net).&#60;br /&#62;
I'm using c# and would like to know how do I dynamically change the url from the c# based on the user click.&#60;/p&#62;
&#60;p&#62;using your example:&#60;br /&#62;
&#38;lt;script language=”javascript” type=”text/javascript”&#38;gt;&#60;br /&#62;
//Create your sharelet with desired properties and set button element to false&#60;br /&#62;
var object = SHARETHIS.addEntry({&#60;br /&#62;
title:’share’,&#60;br /&#62;
summary: ‘Sharing is good for the soul.’,&#60;br /&#62;
url: 'http://www.SomeWebSite.com'},&#60;br /&#62;
{button:false});&#60;br /&#62;
//Output your customized button&#60;br /&#62;
document.write(‘&#38;lt;span id=”share”&#38;gt;&#60;a href=&#34;”javascript:void(0);”&#34;&#62;&#38;lt;img src=“/my_share_icon.gif” /&#38;gt;Share!&#60;/a&#62;&#38;lt;/span&#38;gt;’);&#60;br /&#62;
//Tie customized button to ShareThis button functionality.&#60;br /&#62;
var element = document.getElementById(“share”);&#60;br /&#62;
object.attachButton(element);&#60;br /&#62;
&#38;lt;/script&#38;gt;&#60;/p&#62;
&#60;p&#62;So.... what is the correct way (or syntax) to change the URL from the code behind page?&#60;/p&#62;
&#60;p&#62;10X!!!!
&#60;/p&#62;</description>
</item>
<item>
<title>aprilholle on "Share URL Via Email To Multiple Addresses?"</title>
<link>http://forums.sharethis.com/topic/share-url-via-email-to-multiple-addresses#post-278</link>
<pubDate>Thu, 10 Apr 2008 22:50:44 +0000</pubDate>
<dc:creator>aprilholle</dc:creator>
<guid isPermaLink="false">278@http://forums.sharethis.com/</guid>
<description>&#60;p&#62;I think you should be able to enter them with comma delineation as well as semicolon.
&#60;/p&#62;</description>
</item>
<item>
<title>jhazelw on "Share URL Via Email To Multiple Addresses?"</title>
<link>http://forums.sharethis.com/topic/share-url-via-email-to-multiple-addresses#post-277</link>
<pubDate>Thu, 10 Apr 2008 17:35:40 +0000</pubDate>
<dc:creator>jhazelw</dc:creator>
<guid isPermaLink="false">277@http://forums.sharethis.com/</guid>
<description>&#60;p&#62;You realize that functionality is completely backwards to any email program in existence right?  Why don't you change the functionality to accept comma delimited email addresses like every other email program in the world?  Or at least add some feature to tell users how to send to multiple email address in the Send tab?
&#60;/p&#62;</description>
</item>
<item>
<title>ShareThisSupport on "Share URL Via Email To Multiple Addresses?"</title>
<link>http://forums.sharethis.com/topic/share-url-via-email-to-multiple-addresses#post-196</link>
<pubDate>Tue, 25 Mar 2008 14:43:51 +0000</pubDate>
<dc:creator>ShareThisSupport</dc:creator>
<guid isPermaLink="false">196@http://forums.sharethis.com/</guid>
<description>&#60;p&#62;Indeed you can. Press &#34;Enter&#34; after you type out each email in the &#34;To&#34; field.
&#60;/p&#62;</description>
</item>
<item>
<title>drbob on "Share URL Via Email To Multiple Addresses?"</title>
<link>http://forums.sharethis.com/topic/share-url-via-email-to-multiple-addresses#post-193</link>
<pubDate>Mon, 24 Mar 2008 22:37:19 +0000</pubDate>
<dc:creator>drbob</dc:creator>
<guid isPermaLink="false">193@http://forums.sharethis.com/</guid>
<description>&#60;p&#62;Can I share a URL by sending it via email to multiple addresses?  Separating email addresses with commas doesn't seem to work.  Thanks.
&#60;/p&#62;</description>
</item>

</channel>
</rss>
