<?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>Ergün Karakuş - not defteri</title>
	<atom:link href="http://blog.ekarakus.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.ekarakus.com</link>
	<description>bilişim teknolojileri eğitimi - video dersler</description>
	<lastBuildDate>Wed, 22 Feb 2012 19:46:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Şartlı Sorgulamalar:</title>
		<link>http://blog.ekarakus.com/sartli-sorgulamalar/</link>
		<comments>http://blog.ekarakus.com/sartli-sorgulamalar/#comments</comments>
		<pubDate>Wed, 22 Feb 2012 19:46:58 +0000</pubDate>
		<dc:creator>Dicle NAS</dc:creator>
				<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://blog.ekarakus.com/?p=1963</guid>
		<description><![CDATA[&#8220;Where&#8221; SQL dilinde şart belirtmek için kullanılan komuttur.
&#8211;&#62; Erkek üyeleri listeleyen sorgu:
use kutuphane
select * from uyeler
where uye_cinsiyeti='E'
&#8211;&#62;İsmi Rabia olan kullanıcıları listeleyen sorgu:
use kutuphane
select * from uyeler
where uye_adi='Rabia'
-&#62; Bayan ve pasif üyeleri listeleyen sorgu:
use kutuphane
select * from uyeler
where uye_durumu=0 AND uye_cinsiyeti='K'
There are no posts related to Şartlı Sorgulamalar:.]]></description>
		<wfw:commentRss>http://blog.ekarakus.com/sartli-sorgulamalar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Listeleme Sorguları:</title>
		<link>http://blog.ekarakus.com/listeleme-sorgulari-2/</link>
		<comments>http://blog.ekarakus.com/listeleme-sorgulari-2/#comments</comments>
		<pubDate>Wed, 22 Feb 2012 19:18:48 +0000</pubDate>
		<dc:creator>Dicle NAS</dc:creator>
				<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://blog.ekarakus.com/?p=1961</guid>
		<description><![CDATA[&#8220;select&#8221; SQL dilinde listeleme yapmak için kullanılan komuttur.
&#8211;&#62;Üyeler tablosundaki tüm kayıtları listeleyen sorgu:
use kutuphane
select* from uyeler
&#8211;&#62;Üyelerin sadece isim ve soyisimlerini gösteren sorgu:
use kutuphane
select uye_adi, uye_soyadi from uyeler
There are no posts related to Listeleme Sorguları:.]]></description>
		<wfw:commentRss>http://blog.ekarakus.com/listeleme-sorgulari-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dinamik Stil Değiştirme</title>
		<link>http://blog.ekarakus.com/dinamik-stil-degistirme/</link>
		<comments>http://blog.ekarakus.com/dinamik-stil-degistirme/#comments</comments>
		<pubDate>Tue, 21 Feb 2012 19:49:51 +0000</pubDate>
		<dc:creator>gamzerabia</dc:creator>
				<category><![CDATA[Asp.net]]></category>

		<guid isPermaLink="false">http://blog.ekarakus.com/?p=1950</guid>
		<description><![CDATA[
.stil1 {background-color;#900;}
.stil2 {background-color;#800;}
function degistir1()
{
document.getElementById('metin').className="stil1"
}
function degistir2()
{
document.getElementById('metin').className="stil2"
}



There are no posts related to Dinamik Stil Değiştirme.]]></description>
		<wfw:commentRss>http://blog.ekarakus.com/dinamik-stil-degistirme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>C# &#8211; For Döngüsü Console Application Örnekleri</title>
		<link>http://blog.ekarakus.com/c-for-dongusu-console-application-ornekleri/</link>
		<comments>http://blog.ekarakus.com/c-for-dongusu-console-application-ornekleri/#comments</comments>
		<pubDate>Tue, 21 Feb 2012 19:25:12 +0000</pubDate>
		<dc:creator>berkoktay</dc:creator>
				<category><![CDATA[Genel]]></category>
		<category><![CDATA[Visual C#]]></category>

		<guid isPermaLink="false">http://blog.ekarakus.com/?p=1944</guid>
		<description><![CDATA[0 ile 100 arasındaki dereceleri fahrenayta çeviren program.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            double i, fah;
]]></description>
		<wfw:commentRss>http://blog.ekarakus.com/c-for-dongusu-console-application-ornekleri/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript ile Kullanıcıdan Değer Alma</title>
		<link>http://blog.ekarakus.com/javascript-ile-kullanicidan-deger-alma/</link>
		<comments>http://blog.ekarakus.com/javascript-ile-kullanicidan-deger-alma/#comments</comments>
		<pubDate>Sun, 19 Feb 2012 15:03:05 +0000</pubDate>
		<dc:creator>Tuğba Şimşek</dc:creator>
				<category><![CDATA[Genel]]></category>

		<guid isPermaLink="false">http://blog.ekarakus.com/?p=1935</guid>
		<description><![CDATA[Örn1 :
&#60;html&#62;
&#60;body&#62;
&#60;script&#62;
var sayi
sayi =prompt("bir sayı giriniz ",0)
alert (sayi)
&#60;/script&#62;
&#60;/body&#62;
&#60;/html&#62;
There are no posts related to Javascript ile Kullanıcıdan Değer Alma .]]></description>
		<wfw:commentRss>http://blog.ekarakus.com/javascript-ile-kullanicidan-deger-alma/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FOR DÖNGÜSÜ</title>
		<link>http://blog.ekarakus.com/for-dongusu/</link>
		<comments>http://blog.ekarakus.com/for-dongusu/#comments</comments>
		<pubDate>Sun, 19 Feb 2012 14:51:58 +0000</pubDate>
		<dc:creator>Tuğba Şimşek</dc:creator>
				<category><![CDATA[Genel]]></category>

		<guid isPermaLink="false">http://blog.ekarakus.com/?p=1933</guid>
		<description><![CDATA[ÖRN1 : Ekrana kırk defa cümleyi yazan döngü
&#60;html&#62;

&#60;body&#62;

&#60;script&#62;

For(x=0;x&#60;40;x++)

{

document.writeIn('galatasaray şampiyon olucak&#60;br&#62;')

}

&#60;/script&#62;

&#60;/body&#62;

&#60;/html&#62;
 ÖRN2 : 1 den 100 e kadar olan sayıları ekrana yazan  döngü
&#60;html&#62;

&#60;body&#62;

&#60;script&#62;

For(x=1;x&#60;=100;x++)

{

document.writeIn (x+'&#60;br&#62;')

}

&#60;/script&#62;

&#60;/body&#62;

&#60;/html&#62;
Örn3: Ekrana altı defa sırayla  kelimeyi yazan döngü
&#60;html&#62;

&#60;body&#62;

&#60;script&#62;

For(x=1;x&#60;=6;x++)

{

document.writeIn('galatasaray In ' +x+' .yılı &#60;br&#62;')

}

&#60;/script&#62;

&#60;/body&#62;

&#60;/html&#62;
Örn4: H etiketleriyle ekrana kelimeyi yazan döngü
&#60;html&#62;

&#60;body&#62;

&#60;script&#62;

For(x=1;x&#60;=6;x++)

{

document.writeIn('&#60;h'+x+' &#62;galatasaray &#60;/h'+x+'&#62;')

}

&#60;/script&#62;

&#60;/body&#62;

&#60;/html&#62;
Örn5 : Ekrana farklı fontlarda kelimeleri yazan döngü
&#60;html&#62;

&#60;body&#62;

&#60;script&#62;

For(x=1;x&#60;=100;x++)

{

document.writeIn(&#60; p style ="font-size:'+x+'px "&#62;galatasaray &#60;/p&#62;')

}

&#60;/script&#62;

&#60;/body&#62;

&#60;/html&#62;
There are]]></description>
		<wfw:commentRss>http://blog.ekarakus.com/for-dongusu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IF-ELSE</title>
		<link>http://blog.ekarakus.com/if-else-2/</link>
		<comments>http://blog.ekarakus.com/if-else-2/#comments</comments>
		<pubDate>Wed, 15 Feb 2012 16:41:23 +0000</pubDate>
		<dc:creator>Tuğba Şimşek</dc:creator>
				<category><![CDATA[Genel]]></category>

		<guid isPermaLink="false">http://blog.ekarakus.com/?p=1920</guid>
		<description><![CDATA[ -örn1:
&#60;html&#62;

&#60;body&#62;

&#60;script&#62;

var yas=30

var mesaj=''

if(yas==35)

{

 mesaj ="yolun yarısındasın"

}

else

{

mesaj="yolun sonu yada başı"

}

alert (mesaj)

&#60;/script&#62;

&#60;/body&#62;

&#60;/html&#62;
örn2: bu şekilde de olabilir.
&#60;html&#62;

&#60;body&#62;

&#60;script&#62;

var yas=30

var mesaj=' '

mesaj=(yas==35)? "yolun yarısındasın": "yolun sonu yada başı"

alert(mesaj)

&#60;/script&#62;

&#60;/body&#62;

&#60;/html&#62;
There are no posts related to IF-ELSE.]]></description>
		<wfw:commentRss>http://blog.ekarakus.com/if-else-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ASP.NET ve ASP arasındaki farklar nelerdir?</title>
		<link>http://blog.ekarakus.com/asp-net/</link>
		<comments>http://blog.ekarakus.com/asp-net/#comments</comments>
		<pubDate>Wed, 08 Feb 2012 19:22:51 +0000</pubDate>
		<dc:creator>esevindik</dc:creator>
				<category><![CDATA[Genel]]></category>
		<category><![CDATA[asp]]></category>
		<category><![CDATA[asp.net nedir]]></category>

		<guid isPermaLink="false">http://blog.ekarakus.com/?p=1899</guid>
		<description><![CDATA[ASP.NET Nedir

ASP.NET, Microsoft tarafından pazarlanan bir web uygulama gelişimi teknolojisidir. Dinamik web sayfaları, web uygulamaları ve XML tabanlı web hizmetleri yaratılmasına olanak sağlar. Aynı işletme tarafından geliştirilen .Net çatısının  (framework) parçası, ve artık işletmece desteklenmeyen ASP teknolojisinin devamını teşkil eder.
ASP.NET, ASP&#8217;ye oranla çok ciddi bir değişim geçirmiştir. ASP.NET kodu ortak dil çalışma zamanı (common language runtime) altyapısına dayalı çalışırlar.
ASP.NET Visual Basic]]></description>
		<wfw:commentRss>http://blog.ekarakus.com/asp-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>asp.net ile ilgili genel açıklamalar</title>
		<link>http://blog.ekarakus.com/asp-net-genel-aciklamalar/</link>
		<comments>http://blog.ekarakus.com/asp-net-genel-aciklamalar/#comments</comments>
		<pubDate>Wed, 08 Feb 2012 09:15:54 +0000</pubDate>
		<dc:creator>Emre TİTİRİNLİ</dc:creator>
				<category><![CDATA[asp.net genel kavramlar]]></category>
		<category><![CDATA[asp]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[code behind]]></category>
		<category><![CDATA[page directives]]></category>

		<guid isPermaLink="false">http://blog.ekarakus.com/?p=1875</guid>
		<description><![CDATA[
Html sayfaları istemci üzerimde çalışır. Asp.Net gibi sunucu tabanlı olan teknolojiler ise server üzerinde çalışır. Html siteler aynen istemciye kopyalanır, sunucu tabanlı siteler ise sunucuda çalıştırılır ve html olarak istemciye gönderilir. Bu sebep den dolayı istemcide sadece sunucu tarafından yorumlanmış html kodları görünür.
Asp.Net kontrollerinde (ıd=”txtisim”) ve (runat=”server”) belirtmek zorundayız.
Asp.Net kontrollerinin etiketlerinin başında “asp:” den sonra]]></description>
		<wfw:commentRss>http://blog.ekarakus.com/asp-net-genel-aciklamalar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript Örneği</title>
		<link>http://blog.ekarakus.com/javascript-ornegi/</link>
		<comments>http://blog.ekarakus.com/javascript-ornegi/#comments</comments>
		<pubDate>Tue, 10 Jan 2012 12:23:19 +0000</pubDate>
		<dc:creator>rapaydin</dc:creator>
				<category><![CDATA[Dreamweaver]]></category>

		<guid isPermaLink="false">http://blog.ekarakus.com/?p=1866</guid>
		<description><![CDATA[&#60;head&#62;

&#60;script&#62;

    function mesaj()

{

     var.deger=form1.yazi.value;

     alert (deger);

} 

&#60;/haed&#62;

&#60;body&#62;

&#60;form&#62;

&#60;input type="text" name="yazi"

onclick="mesaj()"/&#62;

&#60;/form&#62;

&#60;/body&#62;
There are no posts related to Javascript Örneği.]]></description>
		<wfw:commentRss>http://blog.ekarakus.com/javascript-ornegi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

