<?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 for Area72</title>
	<atom:link href="http://area72.ro/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://area72.ro</link>
	<description></description>
	<lastBuildDate>Wed, 21 Sep 2011 12:30:11 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
<meta xmlns="http://www.w3.org/1999/xhtml" name="robots" content="noindex,follow" />
	<item>
		<title>Comment on How to Login via Facebook in ASP.NET by Kyprulez</title>
		<link>http://area72.ro/general-it/how-to-login-via-facebook-in-asp-net.html/comment-page-1#comment-32170</link>
		<dc:creator>Kyprulez</dc:creator>
		<pubDate>Wed, 21 Sep 2011 12:30:11 +0000</pubDate>
		<guid isPermaLink="false">http://area72.ro/?p=1399#comment-32170</guid>
		<description>Hi all! Sorry for the late reply, the website experienced some problems. Please check Facebook&#039;s latest guidelines for integration. 

It&#039;s been over a year and I didn&#039;t keep up with anything Facebook might have changed with regards to this topic.

What I wrote here a year ago it&#039;s all that was needed to get it working; with everything as it is here.

Thanks for reading the article!</description>
		<content:encoded><![CDATA[<p>Hi all! Sorry for the late reply, the website experienced some problems. Please check Facebook&#8217;s latest guidelines for integration. </p>
<p>It&#8217;s been over a year and I didn&#8217;t keep up with anything Facebook might have changed with regards to this topic.</p>
<p>What I wrote here a year ago it&#8217;s all that was needed to get it working; with everything as it is here.</p>
<p>Thanks for reading the article!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Top 10 best video games fonts by GameTopz</title>
		<link>http://area72.ro/photoshop/top-10-best-video-games-fonts.html/comment-page-1#comment-31485</link>
		<dc:creator>GameTopz</dc:creator>
		<pubDate>Wed, 10 Aug 2011 11:12:13 +0000</pubDate>
		<guid isPermaLink="false">http://area72.ro/?p=1214#comment-31485</guid>
		<description>Good article, inspiring.</description>
		<content:encoded><![CDATA[<p>Good article, inspiring.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Rotating a line in C# by ali</title>
		<link>http://area72.ro/programming/rotating-a-line-in-csharp.html/comment-page-1#comment-31071</link>
		<dc:creator>ali</dc:creator>
		<pubDate>Sun, 07 Aug 2011 11:21:15 +0000</pubDate>
		<guid isPermaLink="false">http://area72.ro/?p=1260#comment-31071</guid>
		<description>Thanks for your good project.
I bless you alot.
By</description>
		<content:encoded><![CDATA[<p>Thanks for your good project.<br />
I bless you alot.<br />
By</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to Login via Facebook in ASP.NET by Jerome</title>
		<link>http://area72.ro/general-it/how-to-login-via-facebook-in-asp-net.html/comment-page-1#comment-30542</link>
		<dc:creator>Jerome</dc:creator>
		<pubDate>Wed, 03 Aug 2011 04:32:23 +0000</pubDate>
		<guid isPermaLink="false">http://area72.ro/?p=1399#comment-30542</guid>
		<description>I have followed your tutorial and it&#039;s easy to implement but how do i link the c# facebook login method to the facebook login button or javascript which handles the login? I&#039;m stuck at the last part getting access token. thanks</description>
		<content:encoded><![CDATA[<p>I have followed your tutorial and it&#8217;s easy to implement but how do i link the c# facebook login method to the facebook login button or javascript which handles the login? I&#8217;m stuck at the last part getting access token. thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to create custom windows with WPF and Microsoft Blend by todor</title>
		<link>http://area72.ro/general-it/how-to-create-custom-windows-with-wpf-and-microsoft-blend.html/comment-page-1#comment-26764</link>
		<dc:creator>todor</dc:creator>
		<pubDate>Sat, 09 Jul 2011 19:48:23 +0000</pubDate>
		<guid isPermaLink="false">http://area72.ro/?p=1006#comment-26764</guid>
		<description>Hi, very nice tutorial. But I wonder what is next. How can we move this window with mouse?</description>
		<content:encoded><![CDATA[<p>Hi, very nice tutorial. But I wonder what is next. How can we move this window with mouse?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Autocomplete Combo Box in C# with SQL values by Asif Rehman</title>
		<link>http://area72.ro/programming/autocomplete-combo-box-in-csharp-with-sql-values.html/comment-page-1#comment-21542</link>
		<dc:creator>Asif Rehman</dc:creator>
		<pubDate>Mon, 30 May 2011 14:07:15 +0000</pubDate>
		<guid isPermaLink="false">http://area72.ro/?p=1294#comment-21542</guid>
		<description>turn 6 lines code:

&lt;b&gt;   while (reader.Read())  
    {  
        string result = reader.GetString(0);  
        suggestionsList[index] = result;  
        index++;  
    } 
&lt;/b&gt;
into 2 lines of code
&lt;b&gt;
    while (reader.Read())
         sugestionsList[index++] = reader.GetString(0);
&lt;/b&gt;
no local variable creation and destroying. fast extraction.


Regards
Asif Rehman</description>
		<content:encoded><![CDATA[<p>turn 6 lines code:</p>
<p><b>   while (reader.Read())<br />
    {<br />
        string result = reader.GetString(0);<br />
        suggestionsList[index] = result;<br />
        index++;<br />
    }<br />
</b><br />
into 2 lines of code<br />
<b><br />
    while (reader.Read())<br />
         sugestionsList[index++] = reader.GetString(0);<br />
</b><br />
no local variable creation and destroying. fast extraction.</p>
<p>Regards<br />
Asif Rehman</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to Login via Facebook in ASP.NET by DNN Developers</title>
		<link>http://area72.ro/general-it/how-to-login-via-facebook-in-asp-net.html/comment-page-1#comment-15636</link>
		<dc:creator>DNN Developers</dc:creator>
		<pubDate>Sat, 09 Apr 2011 11:33:00 +0000</pubDate>
		<guid isPermaLink="false">http://area72.ro/?p=1399#comment-15636</guid>
		<description>can we pass username and password through database and then get logged in..? i mean without using fb button.</description>
		<content:encoded><![CDATA[<p>can we pass username and password through database and then get logged in..? i mean without using fb button.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to create custom windows with WPF and Microsoft Blend by Mireya Rempe</title>
		<link>http://area72.ro/general-it/how-to-create-custom-windows-with-wpf-and-microsoft-blend.html/comment-page-1#comment-12780</link>
		<dc:creator>Mireya Rempe</dc:creator>
		<pubDate>Tue, 08 Mar 2011 01:04:22 +0000</pubDate>
		<guid isPermaLink="false">http://area72.ro/?p=1006#comment-12780</guid>
		<description>great post loads of info</description>
		<content:encoded><![CDATA[<p>great post loads of info</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Andrei Cornescu by Tineri în luptă &#124; Pioneza dintre fese</title>
		<link>http://area72.ro/about/cornescu-andrei/comment-page-1#comment-12571</link>
		<dc:creator>Tineri în luptă &#124; Pioneza dintre fese</dc:creator>
		<pubDate>Sat, 05 Mar 2011 23:52:09 +0000</pubDate>
		<guid isPermaLink="false">http://area72.ro/?page_id=475#comment-12571</guid>
		<description>[...] - 19 primăveri la cingătoare, terminat (din temelii) Colegiul Naţional Vasile Alecsandri Galaţi, meseriaş în XHTML, CSS, PHP, ASP .NET,  SQL, JavaScript, Action Script, C#&#8230; şi prin prisma acestora este coleg cu Kyp la area72.ro. Pentru detalii apăsaţi tasta unu! [...]</description>
		<content:encoded><![CDATA[<p>[...] &#8211; 19 primăveri la cingătoare, terminat (din temelii) Colegiul Naţional Vasile Alecsandri Galaţi, meseriaş în XHTML, CSS, PHP, ASP .NET,  SQL, JavaScript, Action Script, C#&#8230; şi prin prisma acestora este coleg cu Kyp la area72.ro. Pentru detalii apăsaţi tasta unu! [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ciprian Grigore by Tineri în luptă &#124; Pioneza dintre fese</title>
		<link>http://area72.ro/about/grigore-ciprian/comment-page-1#comment-12570</link>
		<dc:creator>Tineri în luptă &#124; Pioneza dintre fese</dc:creator>
		<pubDate>Sat, 05 Mar 2011 23:50:45 +0000</pubDate>
		<guid isPermaLink="false">http://area72.ro/?page_id=497#comment-12570</guid>
		<description>[...] să particip la o întîlnire în offline cu oameni ce i-am cunoscut în online. Organizator a fost Kypruletz Cip (Ciprian Grigore), de altfel singura persoană dintr-o gaşcă mare cu care schimbasem cîteva idei [...]</description>
		<content:encoded><![CDATA[<p>[...] să particip la o întîlnire în offline cu oameni ce i-am cunoscut în online. Organizator a fost Kypruletz Cip (Ciprian Grigore), de altfel singura persoană dintr-o gaşcă mare cu care schimbasem cîteva idei [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

