<?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>Gebze Web Tasarım &#187; Programlama</title>
	<atom:link href="http://hasangursoy.com.tr/tag/programlama/feed/" rel="self" type="application/rss+xml" />
	<link>http://hasangursoy.com.tr</link>
	<description></description>
	<lastBuildDate>Mon, 06 Feb 2012 20:38:42 +0000</lastBuildDate>
	<language>tr</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='hasangursoy.com.tr' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://0.gravatar.com/blavatar/ca833ba944afdcd9a5199f9a29361595?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Gebze Web Tasarım &#187; Programlama</title>
		<link>http://hasangursoy.com.tr</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://hasangursoy.com.tr/osd.xml" title="Gebze Web Tasarım" />
	<atom:link rel='hub' href='http://hasangursoy.com.tr/?pushpress=hub'/>
		<item>
		<title>Asp.Net&#8217;te MySQL ile Kimlik Doğrulama ve Yetkilendirme</title>
		<link>http://hasangursoy.com.tr/2008/09/09/aspnette-mysql-ile-kimlik-dogrulama-ve-yetkilendirme/</link>
		<comments>http://hasangursoy.com.tr/2008/09/09/aspnette-mysql-ile-kimlik-dogrulama-ve-yetkilendirme/#comments</comments>
		<pubDate>Tue, 09 Sep 2008 09:10:44 +0000</pubDate>
		<dc:creator>Hasan Gürsoy</dc:creator>
				<category><![CDATA[Asp.Net]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Programlama]]></category>
		<category><![CDATA[web tasarımı]]></category>

		<guid isPermaLink="false">http://xspgroup.wordpress.com/?p=682</guid>
		<description><![CDATA[Dün Asp.NET Login Kontrollerinie MySQL ile kullanabilmek için tüm gün araştırdım durdum. Şimdi de bu bilgileri paylaşmak istedim. Eğer benim gibi asp.net&#8217;te yeni iseniz bu bilgiler illaki lazım olur. Çünkü genellikle SQL Server kullanılmak istenmez. İlk önce yapmanız gereken Mysql.Data 5.2.2&#8216;yi yüklemek(5.2.3 şu an son versiyon fakat ilerde göreceğiniz bir işlemi otomatik olarak yapmıyor). 5.2.2&#8242;i [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hasangursoy.com.tr&amp;blog=942496&amp;post=682&amp;subd=xspgroup&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div class="snap_preview">
<p>Dün Asp.NET Login Kontrollerinie MySQL ile kullanabilmek için tüm gün araştırdım durdum. Şimdi de bu bilgileri paylaşmak istedim. Eğer benim gibi asp.net&#8217;te yeni iseniz bu bilgiler illaki lazım olur. Çünkü genellikle SQL Server kullanılmak istenmez.</p>
<p>İlk önce yapmanız gereken <strong>Mysql.Data 5.2.2</strong>&#8216;yi yüklemek(5.2.3 şu an son versiyon fakat ilerde göreceğiniz bir işlemi otomatik olarak yapmıyor). 5.2.2&#8242;i <a href="http://mirror.csclub.uwaterloo.ca/mysql/Downloads/Connector-Net/mysql-connector-net-5.2.2.zip" target="_blank">buradan</a> bulabilirsiniz.</p>
<p>Projenizin web.config dosyasını açıp bağlantı cümlelerine aşağıdaki gibi bir bağlantı ekleyin:</p>
<p><code><strong>&lt;connectionStrings&gt;<br />
&lt;remove name=”LocalMySqlServer”/&gt;<br />
&lt;add name=”LocalMySqlServer” connectionString=”server=localhost; user id=root; password=toor; persist security info=true; database=dorknozzle;” providerName=”MySql.Data.MySqlClient”/&gt;<br />
&lt;/ connectionStrings&gt;</strong></code></p>
<p>Proje referanslarına (Projeye sağ tıklayıp&gt;Property Pages&#8217;dan) MySQL.Data&#8217;yı eklemeniz tavsiye edilir.</p>
<p><strong>Mysql.Data</strong> ve <strong>Mysql.Web</strong> dll&#8217;lerini projenizin içindeki <strong>Bin</strong> klasörüne kopyalayın. Sonra da Solution Explorer&#8217;ı tazeleyin.</p>
<p><em>Dikkat machine.config dosyasında değişiklik yapmanız pek tavsiye edilmeyen birşeydir. Ama mysql için bunları eklememiz gerekiyor. Ve unutmayın ki asp.net servis sağlayıcınız MySQL&#8217;i desteklemeyebilir. Bunu en başta sorun.</em></p>
<p>machine.config dosyasını açıp aşağıda belirtildiği yere <strong>autogenerateschema=”true” </strong>niteliğini ekleyin:</p>
<p><code>&lt;membership&gt;<br />
&lt;providers&gt;<br />
&lt;add name=”MySQLMembershipProvider” <strong>autogenerateschema=”true” </strong>type=”MySql.Web.Security.MySQLMembershipProvider, MySql.Web, Version=5.2.2.0, … /&gt;<br />
&lt;/providers&gt;<br />
&lt;/membership&gt;</code></p>
<p>Sitenizin konfigurasyon sayfasını açın (Açılmış olan projede, Website &gt; ASP.NET Configuration yolunu izleyin, ya da Solution Explorer&#8217;daki çekik ve dünya ikonuna tıklayın). Provider sekmesinde Membership Provide listesinden <strong>MySQLMembershipProvider</strong>&#8216;ı<strong></strong> ve Role Provider listesinden de <strong>MySQLRoleProvider</strong>&#8216;ı seçin. İsterseniz test linklerine basıp bağlantıları kontrol edebilirsiniz.</p>
<p>Ben eğitim süresince aşağıdaki hatalarla karşılaştım (en azından hatırladıklarım ve kaydettiklerim bunlar)  <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  /&gt; :</p>
<p><code>There is a problem with your selected data store. This can be caused by an invalid server name or credentials, or by insufficient permission. It can also be caused by the role manager feature not being enabled. Click the button below to be redirected to a page where you can choose a new data store.</code></p>
<p><code>The following message may help in diagnosing the problem: <strong>Unable to initialize provider. Missing or incorrect schema. (c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Config\machine.config line 145)</strong></code></p>
<p>Ayrıca aşağıdaki linkler çok faydalı oldu. Ortadaki link en faydalısı (tümü İngilizce kaynaklardır):</p>
<p><a href="http://www.dotnetsurfers.com/Blog/2007/12/12/UsingMySQLWithAspnetForAuthenticationauthorization.aspx" target="_blank">www.dotnetsurfers.com</a><br />
<a href="http://blog.nolanbailey.com/2008/03/08/mysql-aspnet-membership-and-role-provider/194" target="_blank">blog.nolanbailey.com</a><br />
<a href="http://forums.asp.net/t/1270199.aspx" target="_blank">forums.asp.net</a></p>
</div>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/xspgroup.wordpress.com/682/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/xspgroup.wordpress.com/682/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/xspgroup.wordpress.com/682/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/xspgroup.wordpress.com/682/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/xspgroup.wordpress.com/682/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/xspgroup.wordpress.com/682/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/xspgroup.wordpress.com/682/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/xspgroup.wordpress.com/682/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/xspgroup.wordpress.com/682/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/xspgroup.wordpress.com/682/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/xspgroup.wordpress.com/682/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/xspgroup.wordpress.com/682/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/xspgroup.wordpress.com/682/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/xspgroup.wordpress.com/682/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/xspgroup.wordpress.com/682/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/xspgroup.wordpress.com/682/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hasangursoy.com.tr&amp;blog=942496&amp;post=682&amp;subd=xspgroup&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://hasangursoy.com.tr/2008/09/09/aspnette-mysql-ile-kimlik-dogrulama-ve-yetkilendirme/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ef44f444d737c62ba6a047d7ccdf187c?s=96&#38;d=&#38;r=PG" medium="image">
			<media:title type="html">HasanG</media:title>
		</media:content>
	</item>
		<item>
		<title>SLQ Manager&#8217;da tüm harfleri büyütme</title>
		<link>http://hasangursoy.com.tr/2008/04/26/slq-managerda-tum-harfleri-buyutme/</link>
		<comments>http://hasangursoy.com.tr/2008/04/26/slq-managerda-tum-harfleri-buyutme/#comments</comments>
		<pubDate>Sat, 26 Apr 2008 11:17:59 +0000</pubDate>
		<dc:creator>Hasan Gürsoy</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Programlama]]></category>
		<category><![CDATA[SQL Manager]]></category>
		<category><![CDATA[Visual Studio 2008]]></category>

		<guid isPermaLink="false">http://xspgroup.wordpress.com/?p=460</guid>
		<description><![CDATA[TR MS SQL Server için kullandığımız SQL Manager&#8217;da seçili metindeki tüm harfleri büyük yapmak istiyorsak ekstra programa ihtiyacımız yok. Tek yapmanız gereken metni seçip Ctrl+Shift+U&#8217;ya basmak. Tam tersi içinse Ctrl+U kısayolunu kullanabilirsiniz. Artık özel ifadeleri yazarken Shift&#8217;e basmama ya da Caps Lock&#8217;u açmama gerek kalmadı .. Aynı şey Visual Studio, Notepad++ ve benzeri programlarda da [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hasangursoy.com.tr&amp;blog=942496&amp;post=460&amp;subd=xspgroup&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img src="http://nedenneden.files.wordpress.com/2007/08/winl.png?w=640" alt="Windows Logo 20×20" /> <strong>TR</strong><br />
MS SQL Server için kullandığımız SQL Manager&#8217;da seçili metindeki tüm harfleri büyük yapmak istiyorsak ekstra programa ihtiyacımız yok. Tek yapmanız gereken metni seçip Ctrl+Shift+U&#8217;ya basmak. Tam tersi içinse Ctrl+U kısayolunu kullanabilirsiniz. Artık özel ifadeleri yazarken Shift&#8217;e basmama ya da Caps Lock&#8217;u açmama gerek kalmadı <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  .. Aynı şey Visual Studio, Notepad++ ve benzeri programlarda da geçerlidir.</p>
<p><strong>EN</strong><br />
To convert upper case all letters in a selected text in VS or SQL Manager or Notepad++ just push Ctrl+Shift+U <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  for the reverse operation use just Ctrl+U</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/xspgroup.wordpress.com/460/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/xspgroup.wordpress.com/460/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/xspgroup.wordpress.com/460/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/xspgroup.wordpress.com/460/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/xspgroup.wordpress.com/460/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/xspgroup.wordpress.com/460/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/xspgroup.wordpress.com/460/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/xspgroup.wordpress.com/460/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/xspgroup.wordpress.com/460/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/xspgroup.wordpress.com/460/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/xspgroup.wordpress.com/460/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/xspgroup.wordpress.com/460/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/xspgroup.wordpress.com/460/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/xspgroup.wordpress.com/460/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/xspgroup.wordpress.com/460/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/xspgroup.wordpress.com/460/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hasangursoy.com.tr&amp;blog=942496&amp;post=460&amp;subd=xspgroup&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://hasangursoy.com.tr/2008/04/26/slq-managerda-tum-harfleri-buyutme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ef44f444d737c62ba6a047d7ccdf187c?s=96&#38;d=&#38;r=PG" medium="image">
			<media:title type="html">HasanG</media:title>
		</media:content>

		<media:content url="http://nedenneden.files.wordpress.com/2007/08/winl.png" medium="image">
			<media:title type="html">Windows Logo 20×20</media:title>
		</media:content>
	</item>
		<item>
		<title>System Error &amp;H80070714&amp;</title>
		<link>http://hasangursoy.com.tr/2008/02/09/system-error-h80070714/</link>
		<comments>http://hasangursoy.com.tr/2008/02/09/system-error-h80070714/#comments</comments>
		<pubDate>Fri, 08 Feb 2008 22:01:20 +0000</pubDate>
		<dc:creator>Hasan Gürsoy</dc:creator>
				<category><![CDATA[.Net]]></category>
		<category><![CDATA[Programlama]]></category>
		<category><![CDATA[Error]]></category>
		<category><![CDATA[Visual Studio 2008]]></category>

		<guid isPermaLink="false">http://xspgroup.wordpress.com/?p=638</guid>
		<description><![CDATA[TR: .net ikon hatasıdır. Geçerli projede kullanmakta olduğunuz simge büyük ihtimal vista sıkıştırması içeriyor. Bunu değiştirin ya da çıkartın. Bahsedilen ikonlar Windows Resim ve Faks Görüntüleyicisi&#8217;nde de görülememekte. EN: .net icon error. Change or remove the icon you are using in current project. In case of using an icon, containing size 256×256 Vista format (These [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hasangursoy.com.tr&amp;blog=942496&amp;post=638&amp;subd=xspgroup&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>TR:</strong> .net ikon hatasıdır. Geçerli projede kullanmakta olduğunuz simge büyük ihtimal vista sıkıştırması içeriyor. Bunu değiştirin ya da çıkartın. Bahsedilen ikonlar Windows Resim ve Faks Görüntüleyicisi&#8217;nde de görülememekte.</p>
<p><strong>EN:</strong> .net icon error. Change or remove the icon you are using in current project. In case of using an icon, containing size 256×256 Vista format (These icons which you can’t preview with Windows Picture and Fax Viewer), vb.net produces this error.</p>
<p>full error:</p>
<p><code>Error 1 Unable to write to output file ‘X:\Projects\obj\Debug\WindowsApplication1.exe’: System Error &amp;H80070714&amp;</code></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/xspgroup.wordpress.com/638/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/xspgroup.wordpress.com/638/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/xspgroup.wordpress.com/638/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/xspgroup.wordpress.com/638/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/xspgroup.wordpress.com/638/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/xspgroup.wordpress.com/638/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/xspgroup.wordpress.com/638/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/xspgroup.wordpress.com/638/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/xspgroup.wordpress.com/638/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/xspgroup.wordpress.com/638/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/xspgroup.wordpress.com/638/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/xspgroup.wordpress.com/638/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/xspgroup.wordpress.com/638/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/xspgroup.wordpress.com/638/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/xspgroup.wordpress.com/638/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/xspgroup.wordpress.com/638/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hasangursoy.com.tr&amp;blog=942496&amp;post=638&amp;subd=xspgroup&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://hasangursoy.com.tr/2008/02/09/system-error-h80070714/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ef44f444d737c62ba6a047d7ccdf187c?s=96&#38;d=&#38;r=PG" medium="image">
			<media:title type="html">HasanG</media:title>
		</media:content>
	</item>
	</channel>
</rss>
