<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>San Jose Web Design &#124; San Francisco Website Design &#124; Development Company &#187; David</title>
	<atom:link href="http://www.xillent.com/author/david/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.xillent.com</link>
	<description>Xillent Studios</description>
	<lastBuildDate>Mon, 16 Feb 2026 06:54:53 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>JQuery Accordion Style Toggle</title>
		<link>http://www.xillent.com/blog/xillent-talk/jquery-accordion-style-toggle/</link>
		<comments>http://www.xillent.com/blog/xillent-talk/jquery-accordion-style-toggle/#comments</comments>
		<pubDate>Thu, 06 Aug 2009 20:15:52 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[Xillent Talk]]></category>
		<category><![CDATA[Accordion Style Toggle]]></category>
		<category><![CDATA[Jquery]]></category>
		<category><![CDATA[JQuery Accordion]]></category>
		<category><![CDATA[JQuery Accordion Toggle]]></category>
		<category><![CDATA[JQuery Toggle]]></category>

		<guid isPermaLink="false">http://blog.xillent.com/?p=159</guid>
		<description><![CDATA[<p>Goal: Build an accordion style toggle for a page with multiple info boxes. Example: http://www.xillent.com/pipeline/sales_info.asp?cid=29 First Attempt: Use jquery script: Problem with First Attempt: We want the image inside the header to show “minus” when we click on it. However, &#8230; <a href="http://www.xillent.com/blog/xillent-talk/jquery-accordion-style-toggle/" class="readMore">Read More</a></p><p>The post <a href="http://www.xillent.com/blog/xillent-talk/jquery-accordion-style-toggle/">JQuery Accordion Style Toggle</a> appeared first on <a href="http://www.xillent.com">San Jose Web Design | San Francisco Website Design | Development Company</a>.</p>]]></description>
			<content:encoded><![CDATA[<p><strong>Goal: </strong>Build an accordion style toggle for a page with multiple info boxes.<strong> </strong></p>
<p><strong>Example: </strong><a href="http://www.xillent.com/pipeline/sales_info.asp?cid=29" target="_blank">http://www.xillent.com/pipeline/sales_info.asp?cid=29</a><strong></strong></p>
<p><strong>First Attempt:</strong> Use jquery script:</p>
<pre class="brush: jscript; title: ; notranslate">
&lt;script type=&quot;text/javascript&quot;&gt;
$(document).ready(function() {
$(&quot;#ContentWrapper div.AccordionHeader&quot;).click(function() {
$(this).next(&quot;div.ContentBody&quot;).slideToggle(300).siblings(&quot;div.ContentBody&quot;).slideUp(&quot;slow&quot;);
});
});
&lt;/script&gt;
</pre>
<p><strong>Problem with First Attempt:</strong> We want the image inside the header to show “minus” when we click on it. However, the image inside the header does not change and always shows “plus.”</p>
<p>We tried countless solutions for over 5 hours, including “$(this).siblings, $(this).next, $(this).parents, and other combinations. Finally, we figured out the solution:</p>
<p><strong>Final Solution:</strong> $(this).<strong><em>find(&#8220;.InputHeaderIcon&#8221;)</em></strong>.attr(&#8220;src&#8221;,&#8221;assets/icons/min.gif&#8221;);</p>
<p>The “find” returned the first matched element within a dom, and now we can toggle the images correctly.</p>
<pre class="brush: jscript; title: ; notranslate">
&lt;script type=&quot;text/javascript&quot;&gt;
$(document).ready(function() {
$(&quot;#ContentWrapper div.AccordionHeader&quot;).click(function() {
$(this).next(&quot;div.ContentBody&quot;).slideToggle(300).siblings(&quot;div.ContentBody&quot;).slideUp(&quot;slow&quot;);
$(&quot;.InputHeaderIcon&quot;).attr(&quot;src&quot;,&quot;assets/icons/max.gif&quot;);
$(this).find(&quot;.InputHeaderIcon&quot;).attr(&quot;src&quot;,&quot;assets/icons/min.gif&quot;);
});
});
&lt;/script&gt;
</pre>
<p>The post <a href="http://www.xillent.com/blog/xillent-talk/jquery-accordion-style-toggle/">JQuery Accordion Style Toggle</a> appeared first on <a href="http://www.xillent.com">San Jose Web Design | San Francisco Website Design | Development Company</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.xillent.com/blog/xillent-talk/jquery-accordion-style-toggle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Session Logout redirect using Ajax</title>
		<link>http://www.xillent.com/blog/codesharing/session-logout-redirect-using-ajax/</link>
		<comments>http://www.xillent.com/blog/codesharing/session-logout-redirect-using-ajax/#comments</comments>
		<pubDate>Thu, 06 Aug 2009 20:09:58 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[ASP]]></category>
		<category><![CDATA[Code Sharing]]></category>
		<category><![CDATA[Ajax Session Logout]]></category>
		<category><![CDATA[ASP Session]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Session]]></category>
		<category><![CDATA[Session Logout]]></category>

		<guid isPermaLink="false">http://blog.xillent.com/?p=155</guid>
		<description><![CDATA[<p>PROBLEM: How to create a session control that automatically logs out the users when the session times out? In ASP, even when the session has timed out, you will still stay on the same page unless you request a new &#8230; <a href="http://www.xillent.com/blog/codesharing/session-logout-redirect-using-ajax/" class="readMore">Read More</a></p><p>The post <a href="http://www.xillent.com/blog/codesharing/session-logout-redirect-using-ajax/">Session Logout redirect using Ajax</a> appeared first on <a href="http://www.xillent.com">San Jose Web Design | San Francisco Website Design | Development Company</a>.</p>]]></description>
			<content:encoded><![CDATA[<p><strong>PROBLEM:</strong></p>
<p>How to create a session control that automatically logs out the users when the session times out?</p>
<p>In ASP, even when the session has timed out, you will still stay on the same page unless you request a new page. This can be an issue if the user is on a public computer.</p>
<p><strong>SOLUTION:</strong></p>
<p>We created a script with Javascript, AJAX, and timeout that loads every 5 seconds. The script calls a helper file which returns if the session state is true or false -&gt; if the session state is true, it sends it back to javacript to run again in 5 seconds -&gt; if the session state is false, it sends the user to the logout page.</p>
<p><strong>WHY AJAX?</strong></p>
<p>If we integrated the ASP session value directly into the javacript, the script would always think the session state is active since the ASP code will be built by the server before the javacript gets loaded.</p>
<p>Ajax solves this ASP problem by requesting a different page to check for the session state and give that result back to the javacript.</p>
<p><strong>AJAX PAGE THAT CHECKS THE SESSION STATE</strong><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<pre class="brush: php; title: ; notranslate">
&lt;%@LANGUAGE=&quot;VBSCRIPT&quot; CODEPAGE=&quot;1252&quot;%&gt;
&lt;%
if len(session(&quot;OrgID&quot;)) &gt; 0 then
 response.write &quot;1&quot;
else
 response.write &quot;0&quot;
end if
%&gt;
</pre>
<p>The post <a href="http://www.xillent.com/blog/codesharing/session-logout-redirect-using-ajax/">Session Logout redirect using Ajax</a> appeared first on <a href="http://www.xillent.com">San Jose Web Design | San Francisco Website Design | Development Company</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.xillent.com/blog/codesharing/session-logout-redirect-using-ajax/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Digg, del.icio.us, technorati, blinklist, furl, reddit and other blogspheres links tutorial</title>
		<link>http://www.xillent.com/blog/codesharing/asp/how-to-add-links-for-delicious-digg-and-more-to-blog-posts-and-articles/</link>
		<comments>http://www.xillent.com/blog/codesharing/asp/how-to-add-links-for-delicious-digg-and-more-to-blog-posts-and-articles/#comments</comments>
		<pubDate>Sun, 01 Feb 2009 01:06:45 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[ASP]]></category>
		<category><![CDATA[add to blinklist]]></category>
		<category><![CDATA[add to del.icio.us]]></category>
		<category><![CDATA[add to digg]]></category>
		<category><![CDATA[add to furl]]></category>
		<category><![CDATA[add to reddit]]></category>
		<category><![CDATA[blinklist]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[blog tutorial]]></category>
		<category><![CDATA[Del.icio.us]]></category>
		<category><![CDATA[digg]]></category>
		<category><![CDATA[digg links]]></category>
		<category><![CDATA[digg tutorial]]></category>
		<category><![CDATA[furl]]></category>
		<category><![CDATA[links]]></category>
		<category><![CDATA[reddit]]></category>
		<category><![CDATA[technorati]]></category>

		<guid isPermaLink="false">http://blog.xillent.com/?p=59</guid>
		<description><![CDATA[<p>In this tutorial you will learn how to use digg, del.icio.us, technorati, blinklist, furl and reddit links on your posts for your blog site. To add a quick link on your blog to all of the popular bookmarking sites, simply &#8230; <a href="http://www.xillent.com/blog/codesharing/asp/how-to-add-links-for-delicious-digg-and-more-to-blog-posts-and-articles/" class="readMore">Read More</a></p><p>The post <a href="http://www.xillent.com/blog/codesharing/asp/how-to-add-links-for-delicious-digg-and-more-to-blog-posts-and-articles/">Digg, del.icio.us, technorati, blinklist, furl, reddit and other blogspheres links tutorial</a> appeared first on <a href="http://www.xillent.com">San Jose Web Design | San Francisco Website Design | Development Company</a>.</p>]]></description>
			<content:encoded><![CDATA[<p>In this tutorial you will learn how to use digg, del.icio.us, technorati, blinklist, furl and reddit links on your posts for your blog site.  To add a quick link on your blog to all of the popular bookmarking sites, simply add the code below to your entry blog, post or article of interest. This will help your blog become more visible to others. Make sure you put in the correct {URL} and {TITLE} for each link.</p>
<pre class="brush: xml; title: ; notranslate">
&lt;a href=”http://www.additious.com/?url={URL}&amp;title={TITLE}”&gt;Additious&lt;/a&gt;
&lt;a href=”http://mystuff.ask.com/mysearch/QuickWebSave?v=1.2&amp;t=webpages&amp;title={TITLE}”&gt;Ask&lt;/a&gt;
&lt;a href=”http://www.backflip.com/add_page_pop.ihtml?url={URL}&amp;title={TITLE}”&gt;BackFlip&lt;/a&gt;
&lt;a href=”http://www.blinkbits.com/bookmarklets/save.php?v=1&amp;source_url={URL}”&gt;BlinkBits&lt;/a&gt;
&lt;a href=”http://blinklist.com/index.php?Action=Blink/addblink.php&amp;Url={URL}&amp;Title={TITLE}”&gt;BlinkList&lt;/a&gt;
&lt;a href=”http://www.bloglines.com/sub/{URL}”&gt;BlogLines&lt;/a&gt;
&lt;a href=”http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url={URL}&amp;title={TITLE}”&gt;BlogMarks&lt;/a&gt;
&lt;a href=”http://www.blogmemes.net/post.php?url={URL}&amp;title={title}”&gt;BlogMemes&lt;/a&gt;
&lt;a href=”http://bluedot.us/Authoring.aspx?u={URL}&amp;t={TITLE}”&gt;BlueDot&lt;/a&gt;
&lt;a href=”http://www.bookmark.it/bookmark.php?url={URL}”&gt;BookmarkIt &lt;/a&gt;
&lt;a href=”http://www.bumpzee.com/bump.php?u={URL}”&gt;BumpZee&lt;/a&gt;
&lt;a href=”http://www.connotea.org/addpopup?continue=confirm&amp;uri={URL}&amp;title={TITLE}”&gt;connotea&lt;/a&gt;
&lt;a href=”http://co.mments.com/track?url={URL}&amp;title={TITLE}”&gt;co.mments&lt;/a&gt;
&lt;a href=”http://del.icio.us/post?url={URL}&amp;title={TITLE}”&gt;Del.icio.us&lt;/a&gt;
&lt;a href=”http://digg.com/submit?phase=2&amp;url={URL}”&gt;Digg&lt;/a&gt;
&lt;a href=”http://www.diigo.com/post?url={URL}&amp;title={TITLE}”&gt;diigo&lt;/a&gt;
&lt;a href=”http://www.diggita.it/submit.php?title={TITLE}&amp;url={URL}”&gt;DiggitaIt&lt;/a&gt;
&lt;a href=”http://www.dropjack.com/submit.php?url={URL}”&gt;DropJack&lt;/a&gt;
&lt;a href=”http://domelhor.net/login.php?return=/submit.php?url={URL}&amp;titulo={TITLE}”&gt;Domelhor&lt;/a&gt;
&lt;a href=”http://www.dotnetkicks.com/kick/?url={URL}&amp;title={TITLE}”&gt;DotNetKicks&lt;/a&gt;
&lt;a href=”http://www.dzone.com/links/add.html?description={TITLE}&amp;url={URL}&amp;title={TITLE}”&gt;DZone&lt;/a&gt;
&lt;a href=”http://www.eucurti.com.br/submit.php?url={URL}&amp;titulo={TITLE}”&gt;eucurti&lt;/a&gt;
&lt;a href=”http://www.facebook.com/share.php?u={URL}”&gt;Facebook&lt;/a&gt;
&lt;a href=”http://cgi.fark.com/cgi/fark/submit.pl?new_url={URL}&amp;new_comment={TITLE}&amp;linktype=”&gt;Fark&lt;/a&gt;
&lt;a href=”http://feedmelinks.com/categorize?from=toolbar&amp;op=submit&amp;name={TITLE}&amp;url={URL}&amp;version=0.7”&gt;FeedmeLinks&lt;/a&gt;
&lt;a href=”http://extension.fleck.com/?v=b.0.804&amp;url={URL}”&gt;Fleck&lt;/a&gt;
&lt;a href=”http://friendsite.com/users/bookmark/?u={URL}&amp;t={TITLE}”&gt;FriendSite&lt;/a&gt;
&lt;a href=”http://furl.net/storeIt.jsp?u={URL}&amp;t={TITLE}”&gt;Furl&lt;/a&gt;
&lt;a href=”http://www.gabbr.com/submit.php?url={URL}”&gt;Gabbr&lt;/a&gt;
&lt;a href=”http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk={URL}&amp;title={TITLE}”&gt;Google&lt;/a&gt;
&lt;a href=”http://www.hugg.com/node/add/storylink?edit[title]={TITLE}&amp;edit[url]={URL}”&gt;Hugg&lt;/a&gt;
&lt;a href=”http://www.i89.us/bookmark.php?url={URL}&amp;title={TITLE}”&gt;i89&lt;/a&gt;
&lt;a href=”http://www.indianpad.com/submit.php?url={URL}”&gt;IndianPad&lt;/a&gt;
&lt;a href=”http://www.jeqq.com/submit.php?url={URL}&amp;title={TITLE}”&gt;Jeqq&lt;/a&gt;
&lt;a href=”http://www.kaboodle.com/za/selectpage?p_pop=false&amp;pa=url&amp;u={URL}”&gt;KaBoodle&lt;/a&gt;
&lt;a href=”http://www.kudos.no/giKudos.php?tittel={TITLE}&amp;url=={URL}”&gt;Kudosno&lt;/a&gt;
&lt;a href=”http://linkatopia.com/add?uri={URL}&amp;title={TITLE}”&gt;Linkatopia&lt;/a&gt;
&lt;a href=”http://www.linkk.com.br/submit.php?url={URL}&amp;titulo={TITLE}”&gt;Linkk&lt;/a&gt;
&lt;a href=”http://www.linkagogo.com/go/AddNoPopup?url={URL}&amp;title={TITLE}”&gt;LinkaGoGo&lt;/a&gt;
&lt;a href=”http://www.linkarena.com/linkadd.php?linkName={TITLE}&amp;linkURL={URL}”&gt;Link Arena&lt;/a&gt;
&lt;a href=”http://www.mister-wong.com/index.php?action=addurl&amp;bm_url={URL}&amp;bm_description={TITLE}”&gt;MisterWong&lt;/a&gt;
&lt;a href=”http://www.mister-wong.cn/index.php?action=addurl&amp;bm_url={URL}&amp;bm_description={TITLE}”&gt;MisterWong China&lt;/a&gt;
&lt;a href=”http://www.mister-wong.de/index.php?action=addurl&amp;bm_url={URL}&amp;bm_description={TITLE}”&gt;MisterWong Germany&lt;/a&gt;
&lt;a href=”http://www.mister-wong.fr/index.php?action=addurl&amp;bm_url={URL}&amp;bm_description={TITLE}”&gt;MisterWong France&lt;/a&gt;
&lt;a href=”http://www.mister-wong.ru/index.php?action=addurl&amp;bm_url={URL}&amp;bm_description={TITLE}”&gt;MisterWong Russia&lt;/a&gt;
&lt;a href=”http://www.mister-wong.es/index.php?action=addurl&amp;bm_url={URL}&amp;bm_description={TITLE}”&gt;MisterWong ES&lt;/a&gt;
&lt;a href=”http://www.mixx.com/submit?page_url={URL}”&gt;Mixx&lt;/a&gt;
&lt;a href=”http://www.netscape.com/submit/?U={URL}&amp;T={TITLE}”&gt;Netscape&lt;/a&gt;
&lt;a href=”http://www.netvouz.com/action/submitBookmark?url={URL}&amp;title={TITLE}&amp;popup=no”&gt;NetVouz&lt;/a&gt;
&lt;a href=”http://www.newsvine.com/_tools/seed&amp;save?u={URL}&amp;h={TITLE}”&gt;NewsVine&lt;/a&gt;
&lt;a href=”http://www.plugim.com/submit?url={URL}&amp;title={TITLE}”&gt;Plugim&lt;/a&gt;
&lt;a href=”http://popcurrent.com/submit?url={URL}&amp;title={TITLE}”&gt;PopCurrent&lt;/a&gt;
&lt;a href=”http://www.rawsugar.com/tagger/?turl={URL}&amp;tttl={TITLE}&amp;editorInitialized=1”&gt;RawSugar&lt;/a&gt;
&lt;a href=”http://reddit.com/submit?url={URL}&amp;title={TITLE}”&gt;reddit&lt;/a&gt;
&lt;a href=”http://www.rojo.com/add-subscription/?resource={URL}”&gt;RoJo&lt;/a&gt;
&lt;a href=”http://segnalo.com/post.html.php?url={URL}&amp;title={TITLE}”&gt;Segnalo&lt;/a&gt;
&lt;a href=”http://www.shoutwire.com/?p=submit&amp;link={URL}”&gt;Shoutwire&lt;/a&gt;
&lt;a href=”http://www.sk-rt.com/submit.php?url={URL}”&gt;sk-rt&lt;/a&gt;
&lt;a href=”http://www.simpy.com/simpy/LinkAdd.do?href={URL}&amp;title={TITLE}”&gt;Simpy&lt;/a&gt;
&lt;a href=”http://slashdot.org/bookmark.pl?url={URL}&amp;title={TITLE}”&gt;Slashdot&lt;/a&gt;
&lt;a href=”http://smarking.com/editbookmark/?url={URL}”&gt;Smarking&lt;/a&gt;
&lt;a href=”http://www.sphere.com/search?q=sphereit:{URL}&amp;title={TITLE}”&gt;Sphere&lt;/a&gt;
&lt;a href=”http://www.spurl.net/spurl.php? url={URL}&amp;title={TITLE}”&gt;Spurl&lt;/a&gt;
&lt;a href=”http://www.stumbleupon.com/submit?url={URL}&amp;title={TITLE}”&gt;Stumble&lt;/a&gt;
&lt;a href=”http://www.squidoo.com/lensmaster/bookmark?{URL}”&gt;Squidoo&lt;/a&gt;
&lt;a href=”http://www.syxt.com.br/rec6/link.php?url={URL}”&gt;Syxt&lt;/a&gt;
&lt;a href=”http://taggle.de/addLinkDetails?mAddress={URL}&amp;title={TITLE}&amp;submitted=Weiter”&gt;Taggle&lt;/a&gt;
&lt;a href=”http://www.taggly.com/bookmarks/?action=add&amp;address={URL}&amp;title={TITLE}”&gt;Taggly&lt;/a&gt;
&lt;a href=”http://tailrank.com/share/?link_href={URL}&amp;title={TITLE}”&gt;TailRank&lt;/a&gt;
&lt;a href=”http://technorati.com/faves?add={URL}”&gt;Technorati&lt;/a&gt;
&lt;a href=”http://www.thisnext.com/pick/new/submit/sociable/?url={URL}&amp;name={TITLE}”&gt;ThisNext&lt;/a&gt;
&lt;a href=”http://wink.com/_/tag?url={URL}&amp;doctitle={TITLE}”&gt;Wink&lt;/a&gt;
&lt;a href=”http://www.wykop.pl/dodaj?url={URL}”&gt;Wykop&lt;/a&gt;
&lt;a href=”http://webride.org/discuss/split.php?uri={URL}&amp;title={TITLE}”&gt;WebRide&lt;/a&gt;
&lt;a href=”https://favorites.live.com/quickadd.aspx?marklet=1&amp;mkt=en-us&amp;url={URL}&amp;title={TITLE}&amp;top=1”&gt;Windows Live&lt;/a&gt;
&lt;a href=”http://www.wirefan.com/grpost.php?u={URL}&amp;title={TITLE}”&gt;WireFan&lt;/a&gt;
&lt;a href=”http://wists.com/r.php?c=&amp;r={URL}&amp;tot;e={TITLE}”&gt;Wists&lt;/a&gt;
&lt;a href=”http://yigg.de/neu?exturl={URL}”&gt;Yigg&lt;/a&gt;
&lt;a href=”http://myweb2.search.yahoo.com/myresults/bookmarklet?u={URL}&amp;t={TITLE}”&gt;Yahoo MyWeb&lt;/a&gt;
</pre>
<p>Here are all the images for each url, there are missing images for syxt and netscape:</p>
<p><strong>Additious</strong><br />
<img class="left" title="Additious Logo" src="http://www.xillent.com/assets/blogs/additious.gif" alt="Additious Logo" /><br />
<strong>Ask</strong><br />
<img class="left" title="Ask Logo" src="http://www.xillent.com/assets/blogs/ask.png" alt="Ask Logo" /><br />
<strong>BackFlip</strong><br />
<img class="left" title="BackFlip Logo" src="http://www.xillent.com/assets/blogs/BackFlip.png" alt="BackFlip Logo" /><br />
<strong>BlinkBits</strong><br />
<img class="left" title="BlinkBits Logo" src="http://www.xillent.com/assets/blogs/BlinkBits.gif" alt="BlinkBits Logo" /><br />
<strong>BlinkList</strong><br />
<img class="left" title="Blinklist Logo" src="http://www.xillent.com/assets/blogs/blinklist.png" alt="Blinklist Logo" /><br />
<strong>BlogLines</strong><br />
<img class="left" title="Bloglines Logo" src="http://www.xillent.com/assets/blogs/bloglines.jpg" alt="BlogLines Logo" /><br />
<strong>BlogMarks</strong><br />
<img class="left" title="BlogMarks Logo" src="http://www.xillent.com/assets/blogs/BlogMarks.png" alt="BlogMarks Logo" /><br />
<strong>BlogMemes</strong><br />
<img class="left" title="BlogMemes Logo" src="http://www.xillent.com/assets/blogs/BlogMemes.gif" alt="BlogMemes Logo" /><br />
<strong>BlueDot</strong><br />
<img class="left" title="BlueDot Logo" src="http://www.xillent.com/assets/blogs/BlueDot.gif" alt="BlueDot Logo" /><br />
<strong>BookmarkIt</strong><br />
<img class="left" title="BookmarkIt Logo" src="http://www.xillent.com/assets/blogs/bookmarkit.gif" alt="BookmarkIt Logo" /><br />
<strong>BumpZee</strong><br />
<img class="left" title="BumpZee Logo" src="http://www.xillent.com/assets/blogs/BumpZee.png" alt="BumpZee Logo" /><br />
<strong>connotea</strong><br />
<img class="left" title="Connotea Logo" src="http://www.xillent.com/assets/blogs/connotea.gif" alt="Connotea Logo" /><br />
<strong>Del.icio.us</strong><br />
<img class="left" title="Del.icio.us Logo" src="http://www.xillent.com/assets/blogs/delicious.gif" alt="Del.icio.us Logo" /><br />
<strong>Digg</strong><br />
<img class="left" title="Digg Logo" src="http://www.xillent.com/assets/blogs/digg.gif" alt="Digg Logo" /><br />
<strong>diigo</strong><br />
<img class="left" title="diigo Logo" src="http://www.xillent.com/assets/blogs/diigo.gif" alt="diigo Logo" /><br />
<strong>DiggitaIt</strong><br />
<img class="left" title="diggitait Logo" src="http://www.xillent.com/assets/blogs/diggitait.gif" alt="diggitait Logo" /><br />
<strong>DropJack</strong><br />
<img class="left" title="DropJack Logo" src="http://www.xillent.com/assets/blogs/DropJack.gif" alt="DropJack Logo" /><br />
<strong>Domelhor</strong><br />
<img class="left" title="Domelhor Logo" src="http://www.xillent.com/assets/blogs/domelhor.gif" alt="Domelhor Logo" /><br />
<strong>DotNetKicks</strong><br />
<img class="left" title="DotNetKicks Logo" src="http://www.xillent.com/assets/blogs/DotNetKicks.gif" alt="DotNetKicks Logo" /><br />
<strong>DZone</strong><br />
<img class="left" title="DZone Logo" src="http://www.xillent.com/assets/blogs/DZone.gif alt=" alt="" /><br />
<strong>eucurti</strong><br />
<img class="left" title="eucurtibr Logo" src="http://www.xillent.com/assets/blogs/eucurtibr.gif" alt="eucurtibr Logo" /><br />
<strong>Facebook</strong><br />
<img class="left" title="Facebook Logo" src="http://www.xillent.com/assets/blogs/facebook.gif" alt="Facebook Logo" /><br />
<strong>Fark</strong><br />
<img class="left" title="Fark Logo" src="http://www.xillent.com/assets/blogs/Fark.png" alt="Fark Logo" /><br />
<strong>Feedmelinks</strong><br />
<img class="left" title="FeedmeLinks Logo" src="http://www.xillent.com/assets/blogs/feedmelinks.png" alt="FeedmeLinks Logo" /><br />
<strong>Fleck</strong><br />
<img class="left" title="Fleck Logo" src="http://www.xillent.com/assets/blogs/fleck.gif" alt="Fleck Logo" /><br />
<strong>FriendSite</strong><br />
<img class="left" title="FriendSite Logo" src="http://www.xillent.com/assets/blogs/friendsite.gif" alt="FriendSite Logo" /><br />
<strong>Furl</strong><br />
<img class="left" title="Furl Logo" src="http://www.xillent.com/assets/blogs/furl.gif" alt="Furl Logo" /><br />
<strong>Gabbr</strong><br />
<img class="left" title="Gabbr Logo" src="http://www.xillent.com/assets/blogs/gabbr.gif" alt="Gabbr Logo" /><br />
<strong>Google</strong><br />
<img class="left" title="Google Logo" src="http://www.xillent.com/assets/blogs/goog.gif" alt="Google Logo" /><br />
<strong>Hugg</strong><br />
<img class="left" title="Hugg Logo" src="http://www.xillent.com/assets/blogs/Hugg.gif" alt="Hugg Logo" /><br />
<strong>i89</strong><br />
<img class="left" title="i89 Logo" src="http://www.xillent.com/assets/blogs/i89.gif" alt="i89 Logo" /><br />
<strong>IndianPad</strong><br />
<img class="left" title="IndianPad Logo" src="http://www.xillent.com/assets/blogs/indianpad.png" alt="IndianPad Logo" /><br />
<strong>Jeqq</strong><br />
<img class="left" title="Jeqq Logo" src="http://www.xillent.com/assets/blogs/Jeqq.gif" alt="Jeqq Logo" /><br />
<strong>KaBoodle</strong><br />
<img class="left" title="KaBoodle Logo" src="http://www.xillent.com/assets/blogs/kaboodle.png" alt="KaBoodle Logo" /><br />
<strong>Kudosno</strong><br />
<img class="left" title="Kudosno Logo" src="http://www.xillent.com/assets/blogs/kudosno.gif" alt="Kudosno Logo" /><br />
<strong>Linkatopia</strong><br />
<img class="left" title="Linkatopia Logo" src="http://www.xillent.com/assets/blogs/linkatopia.gif" alt="Linkatopia Logo" /><br />
<strong>Linkk</strong><br />
<img class="left" title="Linkkbr Logo" src="http://www.xillent.com/assets/blogs/Linkkbr.gif" alt="Linkkbr Logo" /><br />
<strong>LinkaGoGo</strong><br />
<img class="left" title="LinkaGoGo Logo" src="http://www.xillent.com/assets/blogs/LinkaGoGo.png" alt="LinkaGoGo Logo" /><br />
<strong>Link Arena</strong><br />
<img class="left" title="linkarena Logo" src="http://www.xillent.com/assets/blogs/linkarena.gif" alt="linkarena Logo" /><br />
<strong>MisterWong</strong><br />
<img class="left" title="Logo" src="http://www.xillent.com/assets/blogs/misterwong.gif" alt=" Logo" /><br />
<strong>MisterWong China</strong><br />
<img class="left" title="misterwong Logo" src="http://www.xillent.com/assets/blogs/misterwong.gif" alt="misterwong Logo" /><br />
<strong>MisterWong Germany</strong><br />
<img class="left" title="misterwong Logo" src="http://www.xillent.com/assets/blogs/misterwong.gif" alt="misterwong Logo" /><br />
<strong>MisterWong France</strong><br />
<img class="left" title="misterwong Logo" src="http://www.xillent.com/assets/blogs/misterwong.gif" alt="misterwong Logo" /><br />
<strong>MisterWong Russia</strong><br />
<img class="left" title="Logo" src="http://www.xillent.com/assets/blogs/misterwong.gif" alt=" Logo" /><br />
<strong>MisterWong ES</strong><br />
<img class="left" title="misterwong Logo" src="http://www.xillent.com/assets/blogs/misterwong.gif" alt="misterwong Logo" /><br />
<strong>Mixx</strong><br />
<img class="left" title="Mixx Logo" src="http://www.xillent.com/assets/blogs/Mixx.png" alt="Mixx Logo" /><br />
<strong>NetVouz</strong><br />
<img class="left" title="NetVouz Logo" src="http://www.xillent.com/assets/blogs/NetVouz.png" alt="NetVouz Logo" /><br />
<strong>NewsVine</strong><br />
<img class="left" title="NewsVine Logo" src="http://www.xillent.com/assets/blogs/newsvine.png" alt="NewsVine Logo" /><br />
<strong>Plugim</strong><br />
<img class="left" title="Plugim Logo" src="http://www.xillent.com/assets/blogs/plugim.png" alt="Plugim Logo" /><br />
<strong>PopCurrent</strong><br />
<img class="left" title="PopCurrent Logo" src="http://www.xillent.com/assets/blogs/popcurrent.png" alt="PopCurrent Logo" /><br />
<strong>RawSugar</strong><br />
<img class="left" title="RawSugar Logo" src="http://www.xillent.com/assets/blogs/RawSugar.png" alt="RawSugar Logo" /><br />
<strong>reddit</strong><br />
<img class="left" title="reddit Logo" src="http://www.xillent.com/assets/blogs/reddit.gif" alt="reddit Logo" /><br />
<strong>RoJo</strong><br />
<img class="left" title="RoJo Logo" src="http://www.xillent.com/assets/blogs/RoJo.gif" alt="RoJo Logo" /><br />
<strong>Segnalo</strong><br />
<img class="left" title="Segnalo Logo" src="http://www.xillent.com/assets/blogs/Segnalo.gif" alt="Segnalo Logo" /><br />
<strong>ShoutWire</strong><br />
<img class="left" title="Shoutwire Logo" src="http://www.xillent.com/assets/blogs/shoutwire.png" alt="Shoutwire Logo" /><br />
<strong>sk-rt</strong><br />
<img class="left" title="sk-rt Logo" src="http://www.xillent.com/assets/blogs/sk-rt.png" alt="sk-rt Logo" /><br />
<strong>Simpy</strong><br />
<img class="left" title="Simpy Logo" src="http://www.xillent.com/assets/blogs/simpy.png" alt="Simpy Logo" /><br />
<strong>Slashdot</strong><br />
<img class="left" title="Slashdot Logo" src="http://www.xillent.com/assets/blogs/slashdot.png" alt="Slashdot Logo" /><br />
<strong>Smarking</strong><br />
<img class="left" title="Smarking Logo" src="http://www.xillent.com/assets/blogs/Smarking.gif" alt="Smarking Logo" /><br />
<strong>Sphere</strong><br />
<img class="left" title="Sphere Logo" src="http://www.xillent.com/assets/blogs/Sphere.png" alt="Sphere Logo" /><br />
<strong>Spurl</strong><br />
<img class="left" title="Spurl Logo" src="http://www.xillent.com/assets/blogs/Spurl.png" alt="Spurl Logo" /><br />
<strong>Stumble</strong><br />
<img class="left" title="Stumble Logo" src="http://www.xillent.com/assets/blogs/su.png" alt="Stumble Logo" /><br />
<strong>Squidoo</strong><br />
<img class="left" title="Logo" src="http://www.xillent.com/assets/blogs/squidoo.jpg" alt=" Logo" /><br />
<strong>Taggle</strong><br />
<img class="left" title="Taggle Logo" src="http://www.xillent.com/assets/blogs/Taggle.gif" alt="Taggle Logo" /><br />
<strong>Taggly</strong><br />
<img class="left" title="Taggly Logo" src="http://www.xillent.com/assets/blogs/Taggly.png" alt="Taggly Logo" /><br />
<strong>TailRank</strong><br />
<img class="left" title="TailRank Logo" src="http://www.xillent.com/assets/blogs/tailrank.png" alt="TailRank Logo" /><br />
<strong>Technorati</strong><br />
<img class="left" title="Technorati Logo" src="http://www.xillent.com/assets/blogs/technorati.png" alt="Technorati Logo" /><br />
<strong>ThisNext</strong><br />
<img class="left" title="ThisNext Logo" src="http://www.xillent.com/assets/blogs/ThisNext.png" alt="ThisNext Logo" /><br />
<strong>Wink</strong><br />
<img class="left" title="Wink Logo" src="http://www.xillent.com/assets/blogs/Wink.png" alt="Wink Logo" /><br />
<strong>Wykop</strong><br />
<img class="left" title="Wykop Logo" src="http://www.xillent.com/assets/blogs/Wykop.png" alt="Wykop Logo" /><br />
<strong>WebRide</strong><br />
<img class="left" title="WebRide Logo" src="http://www.xillent.com/assets/blogs/WebRide.png" alt="WebRide Logo" /><br />
<strong>Windows Live</strong><br />
<img class="left" title="Stumble Logo" src="http://www.xillent.com/assets/blogs/live.gif" alt="Windows Live Logo" /><br />
<strong>WireFan</strong><br />
<img class="left" title="WireFan Logo" src="http://www.xillent.com/assets/blogs/WireFan.gif" alt="WireFan Logo" /><br />
<strong>Wists</strong><br />
<img class="left" title="Wists Logo" src="http://www.xillent.com/assets/blogs/Wists.gif" alt="Wists Logo" /><br />
<strong>Yigg</strong><br />
<img class="left" title="Yigg Logo" src="http://www.xillent.com/assets/blogs/Yigg.gif" alt="Yigg Logo" /><br />
<strong>yahoo-myweb</strong><br />
<img class="left" title="yahoo-myweb Logo" src="http://www.xillent.com/assets/blogs/yahoo-myweb.png" alt="yahoo-myweb Logo" /></p>
<p>Now your visitors can add your blog entry to digg, del.icio.us, blinklist, furl and reddit when clicking on the icon. This will definitely help your blog.</p>
<p>The post <a href="http://www.xillent.com/blog/codesharing/asp/how-to-add-links-for-delicious-digg-and-more-to-blog-posts-and-articles/">Digg, del.icio.us, technorati, blinklist, furl, reddit and other blogspheres links tutorial</a> appeared first on <a href="http://www.xillent.com">San Jose Web Design | San Francisco Website Design | Development Company</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.xillent.com/blog/codesharing/asp/how-to-add-links-for-delicious-digg-and-more-to-blog-posts-and-articles/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>
