<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.2.2" -->
<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/"
	>

<channel>
	<title>Alec Tang - Web Developer/ Designer/ Online Entrepreneur</title>
	<link>http://www.alectang.com</link>
	<description>A developer who always get inspired by the latest.</description>
	<pubDate>Thu, 24 Jul 2008 10:24:19 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2.2</generator>
	<language>en</language>
			<item>
		<title>The text, ntext, and image data types are invalid for local variables</title>
		<link>http://www.alectang.com/blog/aspnet/the-text-ntext-and-image-data-types-are-invalid-for-local-variables/</link>
		<comments>http://www.alectang.com/blog/aspnet/the-text-ntext-and-image-data-types-are-invalid-for-local-variables/#comments</comments>
		<pubDate>Wed, 18 Jun 2008 23:57:55 +0000</pubDate>
		<dc:creator>Alec</dc:creator>
		
		<category><![CDATA[ASP.NET]]></category>

		<guid isPermaLink="false">http://www.alectang.com/2008/06/18/the-text-ntext-and-image-data-types-are-invalid-for-local-variables/</guid>
		<description><![CDATA[When working with sql, sometimes we have to declare a variable to hold text, ntext. But it&#8217;s not going to work if we declare a varchar to hold text. It will throw error:
Server: Msg 2739, Level 16, State 1, Line 1
The text, ntext, and image data types are invalid for local variables.
So, the solution in [...]<script type="text/javascript">SHARETHIS.addEntry({ title: "The text, ntext, and image data types are invalid for local variables", url: "http://www.alectang.com/blog/aspnet/the-text-ntext-and-image-data-types-are-invalid-for-local-variables/" });</script>]]></description>
			<content:encoded><![CDATA[<p>When working with sql, sometimes we have to declare a variable to hold text, ntext. But it&#8217;s not going to work if we declare a varchar to hold text. It will throw error:</p>
<p>Server: Msg 2739, Level 16, State 1, Line 1<br />
The text, ntext, and image data types are invalid for local variables.</p>
<p>So, the solution in SQL 2005 is to declare a nvarchar(max) variable to hold the string. More information can be read <a href="http://www.sql-server-helper.com/error-messages/msg-2739.aspx">here</a>.</p>
<p><a href="http://sharethis.com/item?&wp=2.2.2&amp;publisher=1ba0537d-c559-42d2-8b38-c06908e56a6a&amp;title=The+text%2C+ntext%2C+and+image+data+types+are+invalid+for+local+variables&amp;url=http%3A%2F%2Fwww.alectang.com%2Fblog%2Faspnet%2Fthe-text-ntext-and-image-data-types-are-invalid-for-local-variables%2F">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.alectang.com/blog/aspnet/the-text-ntext-and-image-data-types-are-invalid-for-local-variables/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Use RowCount for pagination in SQL 2000</title>
		<link>http://www.alectang.com/blog/aspnet/use-rowcount-for-pagination-in-sql-2000/</link>
		<comments>http://www.alectang.com/blog/aspnet/use-rowcount-for-pagination-in-sql-2000/#comments</comments>
		<pubDate>Tue, 03 Jun 2008 04:44:04 +0000</pubDate>
		<dc:creator>Alec</dc:creator>
		
		<category><![CDATA[ASP.NET]]></category>

		<guid isPermaLink="false">http://www.alectang.com/2008/06/03/use-rowcount-for-pagination-in-sql-2000/</guid>
		<description><![CDATA[In SQL 2005, we usually use row_number function to do pagination, but that is not available in SQL 2000. So the following would be useful:
             DECLARE @first_id int, @startRow int
	SET ROWCOUNT @StartIndex
	SELECT @first_id = ATC_Article.id 
	FROM ATC_Article 
		INNER JOIN ATC_ArticleCategory ON ATC_ArticleCategory.id = [...]<script type="text/javascript">SHARETHIS.addEntry({ title: "Use RowCount for pagination in SQL 2000", url: "http://www.alectang.com/blog/aspnet/use-rowcount-for-pagination-in-sql-2000/" });</script>]]></description>
			<content:encoded><![CDATA[<p>In SQL 2005, we usually use row_number function to do pagination, but that is not available in SQL 2000. So the following would be useful:</p>
<p>             <strong>DECLARE @first_id int, @startRow int</strong><br />
	<strong>SET ROWCOUNT @StartIndex</strong><br />
	SELECT <strong>@first_id = ATC_Article.id </strong><br />
	FROM ATC_Article </p>
<p>		INNER JOIN ATC_ArticleCategory ON ATC_ArticleCategory.id = ATC_Article.ATC_ArticleCategory_FK</p>
<p>		WHERE (DATEDIFF(dd, ATC_Article.PublishDate, GETDATE()) >= 0)<br />
			AND ((DATEDIFF(dd, GETDATE(), ATC_Article.ExpireDate) >= 0) OR (ATC_Article.ExpireDate IS NULL))<br />
			AND (ATC_ArticleCategory_FK=@CatId OR @CatId=0)<br />
			AND (YEAR(ATC_Article.ArticleDate)=@Year OR @Year=0)</p>
<p>	<strong>SET ROWCOUNT @MaxRows</strong></p>
<p>	SELECT ATC_Article.id,ATC_Article.Title, CONVERT(varchar(8000),ATC_Article.Overview) AS Overview,<br />
			ATC_Article.Content AS Detail, ATC_Article.ArticleDate, ATC_Article.Featured, ATC_Article.Priority,<br />
			ATC_ArticleCategory.title AS Category, ATC_Article.dtm_Created<br />
	FROM ATC_Article<br />
		INNER JOIN ATC_ArticleCategory ON ATC_ArticleCategory.id = ATC_Article.ATC_ArticleCategory_FK<br />
		WHERE (DATEDIFF(dd, ATC_Article.PublishDate, GETDATE()) >= 0)<br />
			AND ((DATEDIFF(dd, GETDATE(), ATC_Article.ExpireDate) >= 0) OR (ATC_Article.ExpireDate IS NULL))<br />
			AND (ATC_ArticleCategory_FK=@CatId OR @CatId=0)<br />
			AND (YEAR(ATC_Article.ArticleDate)=@Year OR @Year=0)<br />
			AND <strong>ATC_Article.id >= @first_id</strong><br />
		ORDER BY ATC_Article.id</p>
<p>	SET ROWCOUNT 0</p>
<p><a href="http://sharethis.com/item?&wp=2.2.2&amp;publisher=1ba0537d-c559-42d2-8b38-c06908e56a6a&amp;title=Use+RowCount+for+pagination+in+SQL+2000&amp;url=http%3A%2F%2Fwww.alectang.com%2Fblog%2Faspnet%2Fuse-rowcount-for-pagination-in-sql-2000%2F">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.alectang.com/blog/aspnet/use-rowcount-for-pagination-in-sql-2000/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Add/Change column data type in SQL 2005</title>
		<link>http://www.alectang.com/blog/aspnet/addchange-column-data-type-in-sql-2005/</link>
		<comments>http://www.alectang.com/blog/aspnet/addchange-column-data-type-in-sql-2005/#comments</comments>
		<pubDate>Tue, 03 Jun 2008 04:27:05 +0000</pubDate>
		<dc:creator>Alec</dc:creator>
		
		<category><![CDATA[ASP.NET]]></category>

		<guid isPermaLink="false">http://www.alectang.com/2008/06/03/addchange-column-data-type-in-sql-2005/</guid>
		<description><![CDATA[Some sql queries to remember:
To change the data type of an existing column:
alter table big_photos_temp alter column mainPhoto_id int
To add a new column
alter table big_photos_temp add mainPhoto_id int
<script type="text/javascript">SHARETHIS.addEntry({ title: "Add/Change column data type in SQL 2005", url: "http://www.alectang.com/blog/aspnet/addchange-column-data-type-in-sql-2005/" });</script>]]></description>
			<content:encoded><![CDATA[<p>Some sql queries to remember:</p>
<p>To change the data type of an existing column:</p>
<p><strong>alter table big_photos_temp alter column mainPhoto_id int</strong></p>
<p>To add a new column</p>
<p><strong>alter table big_photos_temp add mainPhoto_id int</strong></p>
<p><a href="http://sharethis.com/item?&wp=2.2.2&amp;publisher=1ba0537d-c559-42d2-8b38-c06908e56a6a&amp;title=Add%2FChange+column+data+type+in+SQL+2005&amp;url=http%3A%2F%2Fwww.alectang.com%2Fblog%2Faspnet%2Faddchange-column-data-type-in-sql-2005%2F">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.alectang.com/blog/aspnet/addchange-column-data-type-in-sql-2005/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Baidu announced beta release of its IM</title>
		<link>http://www.alectang.com/blog/webmaster-info/baidu-announced-beta-release-of-its-im/</link>
		<comments>http://www.alectang.com/blog/webmaster-info/baidu-announced-beta-release-of-its-im/#comments</comments>
		<pubDate>Wed, 21 May 2008 22:39:08 +0000</pubDate>
		<dc:creator>Alec</dc:creator>
		
		<category><![CDATA[KB]]></category>

		<guid isPermaLink="false">http://www.alectang.com/2008/05/21/baidu-announced-beta-release-of-its-im/</guid>
		<description><![CDATA[Baidu has announced its beta version of messenger, called Baidu Hi!. To try it out, simply visit here.

<script type="text/javascript">SHARETHIS.addEntry({ title: "Baidu announced beta release of its IM", url: "http://www.alectang.com/blog/webmaster-info/baidu-announced-beta-release-of-its-im/" });</script>]]></description>
			<content:encoded><![CDATA[<p>Baidu has announced its beta version of messenger, called <strong>Baidu Hi!</strong>. To try it out, simply visit <a href="http://app.im.baidu.com">here</a>.</p>
<p><img src='http://www.alectang.com/wp-content/uploads/2008/05/11.jpg' alt='11.jpg' /></p>
<p> <a href="http://www.alectang.com/blog/webmaster-info/baidu-announced-beta-release-of-its-im/#more-675" class="more-link">(more&#8230;)</a></p>
<p><a href="http://sharethis.com/item?&wp=2.2.2&amp;publisher=1ba0537d-c559-42d2-8b38-c06908e56a6a&amp;title=Baidu+announced+beta+release+of+its+IM&amp;url=http%3A%2F%2Fwww.alectang.com%2Fblog%2Fwebmaster-info%2Fbaidu-announced-beta-release-of-its-im%2F">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.alectang.com/blog/webmaster-info/baidu-announced-beta-release-of-its-im/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Chinese websites grey out for 3 days mourning</title>
		<link>http://www.alectang.com/blog/webmaster-info/chinese-websites-grey-out-for-3-days-mourning/</link>
		<comments>http://www.alectang.com/blog/webmaster-info/chinese-websites-grey-out-for-3-days-mourning/#comments</comments>
		<pubDate>Tue, 20 May 2008 11:34:05 +0000</pubDate>
		<dc:creator>Alec</dc:creator>
		
		<category><![CDATA[KB]]></category>

		<guid isPermaLink="false">http://www.alectang.com/2008/05/20/chinese-websites-grey-out-for-3-days-mourning/</guid>
		<description><![CDATA[As China started its national mourning for three days, most websites and major portals have been presented as grey out mode. These include all of the most used search engines in the mainland plus all entertainment websites.

Yahoo! China

Baidu China

Sina

Sohu

BT China
<script type="text/javascript">SHARETHIS.addEntry({ title: "Chinese websites grey out for 3 days mourning", url: "http://www.alectang.com/blog/webmaster-info/chinese-websites-grey-out-for-3-days-mourning/" });</script>]]></description>
			<content:encoded><![CDATA[<p>As China started its <a href="http://news.yahoo.com/s/nm/20080519/wl_nm/quake1_dc_27">national mourning for three days</a>, most websites and major portals have been presented as grey out mode. These include all of the most used search engines in the mainland plus all entertainment websites.</p>
<p><img src='http://www.alectang.com/wp-content/uploads/2008/05/bw1.jpg' alt='bw1.jpg' /><br />
Yahoo! China</p>
<p><img src='http://www.alectang.com/wp-content/uploads/2008/05/bw2.jpg' alt='bw2.jpg' /><br />
Baidu China</p>
<p><img src='http://www.alectang.com/wp-content/uploads/2008/05/bw3.jpg' alt='bw3.jpg' /><br />
Sina</p>
<p><img src='http://www.alectang.com/wp-content/uploads/2008/05/bw5.jpg' alt='bw5.jpg' /><br />
Sohu</p>
<p><img src='http://www.alectang.com/wp-content/uploads/2008/05/bw4.jpg' alt='bw4.jpg' /><br />
BT China</p>
<p><a href="http://sharethis.com/item?&wp=2.2.2&amp;publisher=1ba0537d-c559-42d2-8b38-c06908e56a6a&amp;title=Chinese+websites+grey+out+for+3+days+mourning&amp;url=http%3A%2F%2Fwww.alectang.com%2Fblog%2Fwebmaster-info%2Fchinese-websites-grey-out-for-3-days-mourning%2F">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.alectang.com/blog/webmaster-info/chinese-websites-grey-out-for-3-days-mourning/feed/</wfw:commentRss>
		</item>
		<item>
		<title>SQL: How to find and replace text in columns</title>
		<link>http://www.alectang.com/blog/aspnet/sql-how-to-find-and-replace-text-in-columns/</link>
		<comments>http://www.alectang.com/blog/aspnet/sql-how-to-find-and-replace-text-in-columns/#comments</comments>
		<pubDate>Wed, 14 May 2008 02:23:41 +0000</pubDate>
		<dc:creator>Alec</dc:creator>
		
		<category><![CDATA[ASP.NET]]></category>

		<guid isPermaLink="false">http://www.alectang.com/2008/05/14/sql-how-to-find-and-replace-text-in-columns/</guid>
		<description><![CDATA[I have been trying hard to find out how to go through a list of columns and find and replace some string to what I want. Most of the online tutorials use cursor to do this, but somehow it did not work for me. The following is the script that does that job nicely! It [...]<script type="text/javascript">SHARETHIS.addEntry({ title: "SQL: How to find and replace text in columns", url: "http://www.alectang.com/blog/aspnet/sql-how-to-find-and-replace-text-in-columns/" });</script>]]></description>
			<content:encoded><![CDATA[<p>I have been trying hard to find out how to go through a list of columns and find and replace some string to what I want. Most of the <a href="http://www.sqlteam.com/article/search-and-replace-in-a-text-column">online tutorials</a> use cursor to do this, but somehow it did not work for me. The following is the script that does that job nicely! It select rows from the table PageContent that has Content column containing the h1 tag and then replace them with h2.</p>
<p> <a href="http://www.alectang.com/blog/aspnet/sql-how-to-find-and-replace-text-in-columns/#more-645" class="more-link">(more&#8230;)</a></p>
<p><a href="http://sharethis.com/item?&wp=2.2.2&amp;publisher=1ba0537d-c559-42d2-8b38-c06908e56a6a&amp;title=SQL%3A+How+to+find+and+replace+text+in+columns&amp;url=http%3A%2F%2Fwww.alectang.com%2Fblog%2Faspnet%2Fsql-how-to-find-and-replace-text-in-columns%2F">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.alectang.com/blog/aspnet/sql-how-to-find-and-replace-text-in-columns/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Wordpress footer template hacked badly&#8230;</title>
		<link>http://www.alectang.com/blog/webmaster-info/wordpress-footer-template-hacked-badly/</link>
		<comments>http://www.alectang.com/blog/webmaster-info/wordpress-footer-template-hacked-badly/#comments</comments>
		<pubDate>Fri, 09 May 2008 04:42:48 +0000</pubDate>
		<dc:creator>Alec</dc:creator>
		
		<category><![CDATA[KB]]></category>

		<guid isPermaLink="false">http://www.alectang.com/2008/05/09/wordpress-footer-template-hacked-badly/</guid>
		<description><![CDATA[Since 4 days ago, one of my blogs which runs with great traffic started showing sign of slowing down. Never have I seen this kind of down turn before, that it seems more like a server issue or something. From 100% to 50% to 20%. 
At first, I thought it was something to do with [...]<script type="text/javascript">SHARETHIS.addEntry({ title: "Wordpress footer template hacked badly...", url: "http://www.alectang.com/blog/webmaster-info/wordpress-footer-template-hacked-badly/" });</script>]]></description>
			<content:encoded><![CDATA[<p>Since 4 days ago, one of my blogs which runs with great traffic started showing sign of slowing down. Never have I seen this kind of down turn before, that it seems more like a server issue or something. From 100% to 50% to 20%. </p>
<p>At first, I thought it was something to do with being penalised by Google due to some issues but then I didn&#8217;t put much attention as I believe, great content will always rule at the end since it is not the first time Google changed/ tested their algorithms, etc. But then when I scanned through my templates, boom! I realised that the footer template had been modified with huge bunch of spammy codes/ external links to these credit cards, loans website. WTF? Now this is why my site&#8217;s been penalised. I have no idea since when this was put in and whoever did that, screw him! </p>
<p> <a href="http://www.alectang.com/blog/webmaster-info/wordpress-footer-template-hacked-badly/#more-641" class="more-link">(more&#8230;)</a></p>
<p><a href="http://sharethis.com/item?&wp=2.2.2&amp;publisher=1ba0537d-c559-42d2-8b38-c06908e56a6a&amp;title=Wordpress+footer+template+hacked+badly...&amp;url=http%3A%2F%2Fwww.alectang.com%2Fblog%2Fwebmaster-info%2Fwordpress-footer-template-hacked-badly%2F">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.alectang.com/blog/webmaster-info/wordpress-footer-template-hacked-badly/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to prompt for download image instead of opening</title>
		<link>http://www.alectang.com/blog/php-lab/how-to-prompt-for-download-image-instead-of-opening/</link>
		<comments>http://www.alectang.com/blog/php-lab/how-to-prompt-for-download-image-instead-of-opening/#comments</comments>
		<pubDate>Tue, 06 May 2008 12:00:11 +0000</pubDate>
		<dc:creator>Alec</dc:creator>
		
		<category><![CDATA[PHP Lab]]></category>

		<guid isPermaLink="false">http://www.alectang.com/2008/05/06/how-to-prompt-for-download-image-instead-of-opening/</guid>
		<description><![CDATA[Sometimes when you have link to images and you don&#8217;t want them to be opened by IE but prompt for download/ save, your browser will &#8220;understand&#8221; certain file types, so if you navigate to an image file such as .gif, .jpg, .png, it will display the image because it knows how to do that. Likewise, [...]<script type="text/javascript">SHARETHIS.addEntry({ title: "How to prompt for download image instead of opening", url: "http://www.alectang.com/blog/php-lab/how-to-prompt-for-download-image-instead-of-opening/" });</script>]]></description>
			<content:encoded><![CDATA[<p>Sometimes when you have link to images and you don&#8217;t want them to be opened by IE but prompt for download/ save, your browser will &#8220;understand&#8221; certain file types, so if you navigate to an image file such as .gif, .jpg, .png, it will display the image because it knows how to do that. Likewise, if you have PDF extensions installed, when you navigate to a PDF file, it will display in the browser instead of download. However, if you click on an unknown file extension, it will just prompt to download.</p>
<p>So how do you prompt to download recognized file types? One way is to just tell your users, &#8220;Right-click and choose Save As&#8221;. Of course, that is not as fool-proof as you&#8217;d like. </p>
<p>The other option is to use a scripting language to stream the file to the browser. Below I&#8217;m going to post an example to serve an image (could be gif or jpg). This technique can be used to serve PDF, Excel, Word docs, etc., but you have to figure out the correct Content-Type for each.</p>
<p>[START PHP]<br />
$data = file_get_contents(&#8221;img/my_image.jpg&#8221;);<br />
header(&#8221;Content-Type: image/jpeg&#8221;);<br />
header(&#8221;Content-Disposition: attachment; filename=my_image.jpg&#8221;);<br />
echo $data;<br />
[END PHP]</p>
<p><a href="http://sharethis.com/item?&wp=2.2.2&amp;publisher=1ba0537d-c559-42d2-8b38-c06908e56a6a&amp;title=How+to+prompt+for+download+image+instead+of+opening&amp;url=http%3A%2F%2Fwww.alectang.com%2Fblog%2Fphp-lab%2Fhow-to-prompt-for-download-image-instead-of-opening%2F">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.alectang.com/blog/php-lab/how-to-prompt-for-download-image-instead-of-opening/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Use JavaScript to talk between windows pages</title>
		<link>http://www.alectang.com/blog/webmaster-info/use-javascript-to-talk-between-windows-pages/</link>
		<comments>http://www.alectang.com/blog/webmaster-info/use-javascript-to-talk-between-windows-pages/#comments</comments>
		<pubDate>Thu, 01 May 2008 03:47:31 +0000</pubDate>
		<dc:creator>Alec</dc:creator>
		
		<category><![CDATA[KB]]></category>

		<guid isPermaLink="false">http://www.alectang.com/2008/05/01/use-javascript-to-talk-between-windows-pages/</guid>
		<description><![CDATA[Was seeking a way to let different windows talking to each other. Something like a link in a pop up window, when clicked, the original window&#8217;s text box will be filled with some text. Example can be seen here.
<script type="text/javascript">SHARETHIS.addEntry({ title: "Use JavaScript to talk between windows pages", url: "http://www.alectang.com/blog/webmaster-info/use-javascript-to-talk-between-windows-pages/" });</script>]]></description>
			<content:encoded><![CDATA[<p>Was seeking a way to let different windows talking to each other. Something like a link in a pop up window, when clicked, the original window&#8217;s text box will be filled with some text. Example can be seen <a href="http://radio.javaranch.com/pascarello/2005/01/18/1106063002000.html">here</a>.</p>
<p><a href="http://sharethis.com/item?&wp=2.2.2&amp;publisher=1ba0537d-c559-42d2-8b38-c06908e56a6a&amp;title=Use+JavaScript+to+talk+between+windows+pages&amp;url=http%3A%2F%2Fwww.alectang.com%2Fblog%2Fwebmaster-info%2Fuse-javascript-to-talk-between-windows-pages%2F">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.alectang.com/blog/webmaster-info/use-javascript-to-talk-between-windows-pages/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Yahoo! Taiwan offers credit card payment in auction</title>
		<link>http://www.alectang.com/blog/webmaster-info/yahoo-taiwan-offers-credit-card-payment-in-auction/</link>
		<comments>http://www.alectang.com/blog/webmaster-info/yahoo-taiwan-offers-credit-card-payment-in-auction/#comments</comments>
		<pubDate>Mon, 28 Apr 2008 22:47:09 +0000</pubDate>
		<dc:creator>Alec</dc:creator>
		
		<category><![CDATA[KB]]></category>

		<guid isPermaLink="false">http://www.alectang.com/2008/04/28/yahoo-taiwan-offers-credit-card-payment-in-auction/</guid>
		<description><![CDATA[Yahoo! Kimo has announced to launch online credit card payment system for its online auction section! This is a great news as previously, if you want to purchase something in the auction, you&#8217;d have to pay local or do an Internet banking transfer. But now, for sellers who met over 300 trust points, they could [...]<script type="text/javascript">SHARETHIS.addEntry({ title: "Yahoo! Taiwan offers credit card payment in auction", url: "http://www.alectang.com/blog/webmaster-info/yahoo-taiwan-offers-credit-card-payment-in-auction/" });</script>]]></description>
			<content:encoded><![CDATA[<p><a href="http://tw.bid.yahoo.com/">Yahoo! Kimo</a> has announced to launch online credit card payment system for its online auction section! This is a great news as previously, if you want to purchase something in the auction, you&#8217;d have to pay local or do an Internet banking transfer. But now, for sellers who met over 300 trust points, they could start accepting payment made by credit cards from the buyers. There is no annual fee for the seller, just that 2% transaction fee will be charged. That sounds like overseas buyers could also make payment in the auction now, I guess?</p>
<p><a href="http://sharethis.com/item?&wp=2.2.2&amp;publisher=1ba0537d-c559-42d2-8b38-c06908e56a6a&amp;title=Yahoo%21+Taiwan+offers+credit+card+payment+in+auction&amp;url=http%3A%2F%2Fwww.alectang.com%2Fblog%2Fwebmaster-info%2Fyahoo-taiwan-offers-credit-card-payment-in-auction%2F">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.alectang.com/blog/webmaster-info/yahoo-taiwan-offers-credit-card-payment-in-auction/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
