<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>AhmetSali&#039;s Blog</title>
	<atom:link href="http://ahmetsali.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://ahmetsali.wordpress.com</link>
	<description>XHTML &#38; CSS &#38; jQuery &#38; Asp.NET &#38; LINQ &#38; AJAX &#38; MsSQL &#38; MVC</description>
	<lastBuildDate>Thu, 30 Sep 2010 00:48:22 +0000</lastBuildDate>
	<language>tr</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='ahmetsali.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>AhmetSali&#039;s Blog</title>
		<link>http://ahmetsali.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://ahmetsali.wordpress.com/osd.xml" title="AhmetSali&#039;s Blog" />
	<atom:link rel='hub' href='http://ahmetsali.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Javascript ile Bir Fonksiyonu Parametre Olarak Geçmek</title>
		<link>http://ahmetsali.wordpress.com/2010/09/30/javascript-ile-bir-fonksiyonu-parametre-olarak-gecmek/</link>
		<comments>http://ahmetsali.wordpress.com/2010/09/30/javascript-ile-bir-fonksiyonu-parametre-olarak-gecmek/#comments</comments>
		<pubDate>Thu, 30 Sep 2010 00:48:22 +0000</pubDate>
		<dc:creator>ahmetsali</dc:creator>
				<category><![CDATA[Javascirpt]]></category>
		<category><![CDATA[fonksiyonu parametre olarak geçmek]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[javascript funciton]]></category>

		<guid isPermaLink="false">http://ahmetsali.wordpress.com/?p=69</guid>
		<description><![CDATA[Jquery pluginleri kimi zaman parametre olarak fonksiyon kabul etmekteler, bu durumda bir fonksiyonu(parametre alan bir fonksiyon da dahil) başka bir fonksiyona parametre olarak nasıl geçebiliriz inceleyelim function goster() { alert(&#8220;merhaba&#8221;); } şeklinde basit bir fonksiyonumuz olsun, şimdi başka bir fonksiyona &#8230; <a href="http://ahmetsali.wordpress.com/2010/09/30/javascript-ile-bir-fonksiyonu-parametre-olarak-gecmek/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ahmetsali.wordpress.com&amp;blog=10117573&amp;post=69&amp;subd=ahmetsali&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Jquery pluginleri kimi zaman parametre olarak fonksiyon kabul etmekteler, bu durumda bir fonksiyonu(parametre alan bir fonksiyon da dahil) başka bir fonksiyona parametre olarak nasıl geçebiliriz inceleyelim</p>
<p>function goster() {</p>
<p>alert(&#8220;merhaba&#8221;);</p>
<p>}</p>
<p>şeklinde basit bir fonksiyonumuz olsun, şimdi başka bir fonksiyona bu fonksiyonu parametre olarak geçerek çalışmasını sağlayalım,</p>
<p>function calistir( fonksiyonum ) {</p>
<p>fonksiyonum();</p>
<p>}</p>
<p>bu fonksiyonumuz kendisine parametre olarak ismi geçilen fonksiyonu çalıştıracaktır, şöyleki</p>
<p>calistir(goster);</p>
<p>dediğimizde goster fonksiyonu calistir fonksiyonu içinde çağrılacaktır, yani goster() fonksiyonu ile aynı çıktıyı vermiş olacak.<br />
Peki ya bu parametre olarak geçtiğimiz fonksiyonun kendisi de parametre alıyorsa ne olacak?</p>
<p>O zaman calistir fonksiyonu parametrelerine gecmek istediğim fonksiyonun ismi haricinde, bu fonksiyona geçilen parametreleri de parametre olarak alacak, yani;</p>
<p>function goster(mesaj) {</p>
<p>alert(mesaj);</p>
<p>}</p>
<p>şeklinde goster fonksiyonumuz parametre alacak şekilde değiştiriyoruz, aynı şekilde</p>
<p>function calistir( fonksiyonum, parametresi ) {</p>
<p>fonksiyonum(parametresi);</p>
<p>}</p>
<p>calistir fonksiyonunu da çağıracağı fonksiyona geçeceği parametreyi de alacak şekilde değiştiriyoruz.Böylelikle;</p>
<p>calistir(goster, &#8220;merhaba&#8221;);</p>
<p>fonksiyonuna goster(&#8220;merhaba&#8221;) fonskiyon çağrısı yaptırıyoruz.</p>
<p>Burada önemli olan nokta, fonksiyon ismini parametre olarak geçerken parantez işaretleri olmadan saf fonksiyon ismini yazmakta, yoksa</p>
<p>calistir(goster());</p>
<p>şeklinde bir yazım, goster() metodunun direk olarak kontrolümüz dışında çağrılmasına sebep vererek sorun oluşturacaktır.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ahmetsali.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ahmetsali.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ahmetsali.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ahmetsali.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ahmetsali.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ahmetsali.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ahmetsali.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ahmetsali.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ahmetsali.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ahmetsali.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ahmetsali.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ahmetsali.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ahmetsali.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ahmetsali.wordpress.com/69/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ahmetsali.wordpress.com&amp;blog=10117573&amp;post=69&amp;subd=ahmetsali&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ahmetsali.wordpress.com/2010/09/30/javascript-ile-bir-fonksiyonu-parametre-olarak-gecmek/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9da5cf8ee0674b4c83956be7722cf78c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ahmetsali</media:title>
		</media:content>
	</item>
		<item>
		<title>AudioPlay! Sayfa Arkaplanda Muzik çalsın!</title>
		<link>http://ahmetsali.wordpress.com/2010/01/15/audioplay-sayfa-arkaplanda-muzik-calsin/</link>
		<comments>http://ahmetsali.wordpress.com/2010/01/15/audioplay-sayfa-arkaplanda-muzik-calsin/#comments</comments>
		<pubDate>Fri, 15 Jan 2010 20:11:43 +0000</pubDate>
		<dc:creator>ahmetsali</dc:creator>
				<category><![CDATA[arkaplan müzik]]></category>
		<category><![CDATA[audioplay]]></category>
		<category><![CDATA[web sayfanızda müzik]]></category>

		<guid isPermaLink="false">http://ahmetsali.wordpress.com/?p=42</guid>
		<description><![CDATA[Şu sıralar üzerinde çalıştığım anaokulu sitesinde müşteri arkaplanda müzik çalmasını isteyince, bunu jQuery ile nasıl gerçekleştirebilirim diye arayışa girdim. jMp3 ile sayfa açıldığı anda müziğin başlamasını sağlayamadım, zannedersem desteklemiyor,  jPlayer ise uygulaması çok karışık geldi. Bu javascript pluginleriyle uğraşırken, aslında bu &#8230; <a href="http://ahmetsali.wordpress.com/2010/01/15/audioplay-sayfa-arkaplanda-muzik-calsin/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ahmetsali.wordpress.com&amp;blog=10117573&amp;post=42&amp;subd=ahmetsali&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Şu sıralar üzerinde çalıştığım anaokulu sitesinde müşteri arkaplanda müzik çalmasını isteyince, bunu jQuery ile nasıl gerçekleştirebilirim diye arayışa girdim. jMp3 ile sayfa açıldığı anda müziğin başlamasını sağlayamadım, zannedersem desteklemiyor,  jPlayer ise uygulaması çok karışık geldi. Bu javascript pluginleriyle uğraşırken, aslında bu scriptlerin de ses çalabilmek için arkaplanda flash kullandıklarını anladım.</p>
<p>Sonra <a href="http://www.bildirgec.org">bildirgeç </a>ten linkine ulaştığım <a href="http://www.strangecube.com/audioplay/">AudioPlay </a>bu işi sadece dosya url sini alarak size tek satırlık çıktı ile, flash tabanlı play pause işlevleri olan, sayfa açıldığı anda çalmayı destekleyerek kolayca halledebiliyor. Özetle kullanması ve uygulaması çok kolay <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ahmetsali.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ahmetsali.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ahmetsali.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ahmetsali.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ahmetsali.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ahmetsali.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ahmetsali.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ahmetsali.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ahmetsali.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ahmetsali.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ahmetsali.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ahmetsali.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ahmetsali.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ahmetsali.wordpress.com/42/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ahmetsali.wordpress.com&amp;blog=10117573&amp;post=42&amp;subd=ahmetsali&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ahmetsali.wordpress.com/2010/01/15/audioplay-sayfa-arkaplanda-muzik-calsin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9da5cf8ee0674b4c83956be7722cf78c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ahmetsali</media:title>
		</media:content>
	</item>
		<item>
		<title>jQuery 1.4 sürümü çıktı!</title>
		<link>http://ahmetsali.wordpress.com/2010/01/15/jquery-1-4-surumu-cikti/</link>
		<comments>http://ahmetsali.wordpress.com/2010/01/15/jquery-1-4-surumu-cikti/#comments</comments>
		<pubDate>Thu, 14 Jan 2010 22:59:56 +0000</pubDate>
		<dc:creator>ahmetsali</dc:creator>
				<category><![CDATA[Jquery]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery 1.4]]></category>
		<category><![CDATA[jquery 1.4 çıktı]]></category>
		<category><![CDATA[jquery son sürüm]]></category>
		<category><![CDATA[js]]></category>
		<category><![CDATA[js library]]></category>

		<guid isPermaLink="false">http://ahmetsali.wordpress.com/?p=35</guid>
		<description><![CDATA[Microsoft un dahi dayanamayıp MVC ile desteklemeye başladığı, son zamanların en popüler JavaScript kütüphanesi olan jQuery&#8216; nin 1.4 sürümü çıktı. Burdan indirebileceğiniz, performans testlerine de burdan ulaşabileceğimiz bu sürüm ile özellikle hız açısından 1.3.2 sürümüne göre bir hayli ilerleme kaydedildiğini görüyoruz. Burdan bu &#8230; <a href="http://ahmetsali.wordpress.com/2010/01/15/jquery-1-4-surumu-cikti/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ahmetsali.wordpress.com&amp;blog=10117573&amp;post=35&amp;subd=ahmetsali&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Microsoft un dahi dayanamayıp MVC ile desteklemeye başladığı, son zamanların en popüler JavaScript kütüphanesi olan <a title="jQuery" href="http://jquery.com/" target="_blank">jQuery</a>&#8216; nin 1.4 sürümü çıktı. <a href="http://code.jquery.com/jquery-1.4.min.js" target="_blank">Burdan </a>indirebileceğiniz, performans testlerine de <a href="http://jquery14.com/day-01/jquery-14" target="_blank">burdan</a> ulaşabileceğimiz bu sürüm ile özellikle hız açısından 1.3.2 sürümüne göre bir hayli ilerleme kaydedildiğini görüyoruz. <a href="http://net.tutsplus.com/tutorials/javascript-ajax/jquery-1-4-released-the-15-new-features-you-must-know/" target="_blank">Burdan </a>bu yeni özelliklere göz atabilrisiniz.</p>
<p><img title="jQuery " src="http://greatwebguy.com/wp-content/uploads/2008/11/jquery_logo.png" alt="" width="215" height="53" /></p>
<h1>jQuery 1.4</h1>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ahmetsali.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ahmetsali.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ahmetsali.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ahmetsali.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ahmetsali.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ahmetsali.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ahmetsali.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ahmetsali.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ahmetsali.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ahmetsali.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ahmetsali.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ahmetsali.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ahmetsali.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ahmetsali.wordpress.com/35/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ahmetsali.wordpress.com&amp;blog=10117573&amp;post=35&amp;subd=ahmetsali&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ahmetsali.wordpress.com/2010/01/15/jquery-1-4-surumu-cikti/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9da5cf8ee0674b4c83956be7722cf78c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ahmetsali</media:title>
		</media:content>

		<media:content url="http://greatwebguy.com/wp-content/uploads/2008/11/jquery_logo.png" medium="image">
			<media:title type="html">jQuery </media:title>
		</media:content>
	</item>
		<item>
		<title>Sitenizde Online Kişi Sayısını Görüntüleyin</title>
		<link>http://ahmetsali.wordpress.com/2009/12/23/24/</link>
		<comments>http://ahmetsali.wordpress.com/2009/12/23/24/#comments</comments>
		<pubDate>Wed, 23 Dec 2009 07:09:00 +0000</pubDate>
		<dc:creator>ahmetsali</dc:creator>
				<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://ahmetsali.wordpress.com/2009/12/23/24/</guid>
		<description><![CDATA[Birazdan anlatacağım eklenti whos.amung.us tarafından ücretsiz olarak geliştiricilere sunuluyor ve size sitenizde anlık online kişi sayısını gösteriyor.Üstelik kullanımı da çok kolay, sadece bir satırlık bir script kodunu sayfamızın &#8216;head&#8217; kısmına kopyalıyoruz ve tamam. Ayrıca güzel bi tasarıma da sahip. Site içinde &#8230; <a href="http://ahmetsali.wordpress.com/2009/12/23/24/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ahmetsali.wordpress.com&amp;blog=10117573&amp;post=24&amp;subd=ahmetsali&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:center;"><img class="aligncenter" title="onl1" src="http://ahmetsali.files.wordpress.com/2009/12/onl1.png?w=270&#038;h=176" alt="" width="270" height="176" /></p>
<p>Birazdan anlatacağım eklenti <a title="whos.amung.us" href="http://whos.amung.us" target="_blank">whos.amung.us</a> tarafından ücretsiz olarak geliştiricilere sunuluyor ve size sitenizde anlık online kişi sayısını gösteriyor.Üstelik kullanımı da çok kolay, sadece bir satırlık bir script kodunu sayfamızın &#8216;head&#8217; kısmına kopyalıyoruz ve tamam. Ayrıca güzel bi tasarıma da sahip.</p>
<p>Site içinde görüntüsü ise şu şekilde;</p>
<p style="text-align:center;"><a href="http://ahmetsali.files.wordpress.com/2009/12/online1.png"><img class="aligncenter" title="online" src="http://ahmetsali.files.wordpress.com/2009/12/online1.png?w=55&#038;h=146" alt="" width="55" height="146" /></a></p>
<p>Sitemiz içerisinde nerede durmasını istiyorsak <a title="whos.amung.us" href="http://whos.amung.us" target="_blank">whos.amung.us</a> sayfasından pozisyonunu seçip oluşturduğu script kodunu olduğu gibi &#8216;head&#8217; kısmına yapıştırıyoruz.</p>
<p>Örnek olarak, sayfamızda sağ alt pozisyonda yer almasını istiyorsak;</p>
<pre>&lt;script type="text/javascript" src="http://widgets.amung.us/tab.js"&gt;&lt;/script&gt;&lt;script type="text/javascript"&gt;WAU_tab('z313yc9odcx9', 'right-lower')&lt;/script&gt;</pre>
<address></address>
<p>kodunu kullanabiliyoruz.</p>
<div><em><br />
</em></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ahmetsali.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ahmetsali.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ahmetsali.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ahmetsali.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ahmetsali.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ahmetsali.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ahmetsali.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ahmetsali.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ahmetsali.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ahmetsali.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ahmetsali.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ahmetsali.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ahmetsali.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ahmetsali.wordpress.com/24/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ahmetsali.wordpress.com&amp;blog=10117573&amp;post=24&amp;subd=ahmetsali&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ahmetsali.wordpress.com/2009/12/23/24/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9da5cf8ee0674b4c83956be7722cf78c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ahmetsali</media:title>
		</media:content>

		<media:content url="http://ahmetsali.files.wordpress.com/2009/12/onl1.png" medium="image">
			<media:title type="html">onl1</media:title>
		</media:content>

		<media:content url="http://ahmetsali.files.wordpress.com/2009/12/online1.png" medium="image">
			<media:title type="html">online</media:title>
		</media:content>
	</item>
		<item>
		<title>ASP.NET ile yapılmış Proje Örnekleri(Starter Kits)</title>
		<link>http://ahmetsali.wordpress.com/2009/10/31/asp-net-ile-yapilmis-proje-ornekleristarter-kits/</link>
		<comments>http://ahmetsali.wordpress.com/2009/10/31/asp-net-ile-yapilmis-proje-ornekleristarter-kits/#comments</comments>
		<pubDate>Sat, 31 Oct 2009 19:27:07 +0000</pubDate>
		<dc:creator>ahmetsali</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[LINQ]]></category>
		<category><![CDATA[MVC]]></category>
		<category><![CDATA[asp.net blog]]></category>
		<category><![CDATA[asp.net cms]]></category>
		<category><![CDATA[asp.net CRM]]></category>
		<category><![CDATA[asp.net proje]]></category>
		<category><![CDATA[proje örnekleri]]></category>
		<category><![CDATA[starter kits]]></category>

		<guid isPermaLink="false">http://ahmetsali.wordpress.com/?p=11</guid>
		<description><![CDATA[Bu adresten Microsoft tarafından asp.net geliştiricilerine sunulan amatörden profesyonele, kişisel siteden geniş kapsamlı CMS e,Blog sitesinden CRM uygulamasına ,e-ticaret sitesine kadar birçok proje örneğini ücretsiz indirip düzenleyebilir ve kendi projelerinizde kullanabilirsiniz&#8230;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ahmetsali.wordpress.com&amp;blog=10117573&amp;post=11&amp;subd=ahmetsali&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a title="Starter Kits" href="http://www.asp.net/community/projects/" target="_blank">Bu adresten</a> Microsoft tarafından asp.net geliştiricilerine sunulan amatörden profesyonele, kişisel siteden geniş kapsamlı CMS e,Blog sitesinden CRM uygulamasına ,e-ticaret sitesine kadar birçok proje örneğini ücretsiz indirip düzenleyebilir ve kendi projelerinizde kullanabilirsiniz&#8230;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ahmetsali.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ahmetsali.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ahmetsali.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ahmetsali.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ahmetsali.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ahmetsali.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ahmetsali.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ahmetsali.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ahmetsali.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ahmetsali.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ahmetsali.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ahmetsali.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ahmetsali.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ahmetsali.wordpress.com/11/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ahmetsali.wordpress.com&amp;blog=10117573&amp;post=11&amp;subd=ahmetsali&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ahmetsali.wordpress.com/2009/10/31/asp-net-ile-yapilmis-proje-ornekleristarter-kits/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9da5cf8ee0674b4c83956be7722cf78c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ahmetsali</media:title>
		</media:content>
	</item>
	</channel>
</rss>
