<?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>Writing Something &#187; Asp.Net</title>
	<atom:link href="http://www.serdarb.com/category/aspnet/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.serdarb.com</link>
	<description>Serdar's</description>
	<lastBuildDate>Tue, 01 Jun 2010 08:07:28 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Devexpress Webchart</title>
		<link>http://www.serdarb.com/aspnet/devexpress-webchart/</link>
		<comments>http://www.serdarb.com/aspnet/devexpress-webchart/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 12:05:57 +0000</pubDate>
		<dc:creator>serdar</dc:creator>
				<category><![CDATA[Asp.Net]]></category>
		<category><![CDATA[devexpress]]></category>

		<guid isPermaLink="false">http://www.serdarb.com/?p=952</guid>
		<description><![CDATA[
Devexpress kontrollerinden webchartcontrol ile farklı türlerde iki seriden grafik oluşturumayı gösteren bir video hazırladım. 2 dakikada nasıl yapıldığını görebilirsiniz.
Video ayrıca çok büyük ve küçük değerlere sahip serilerde otomatik eksen bölümlemenin nasıl yapıldığınıda gösteriyor. (autoscalebreaks)
]]></description>
		<wfw:commentRss>http://www.serdarb.com/aspnet/devexpress-webchart/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Crystal Reports Deployment on 64 bit Server</title>
		<link>http://www.serdarb.com/aspnet/crystal-reports-deployment-on-64-bit-server/</link>
		<comments>http://www.serdarb.com/aspnet/crystal-reports-deployment-on-64-bit-server/#comments</comments>
		<pubDate>Wed, 06 Jan 2010 12:46:38 +0000</pubDate>
		<dc:creator>serdar</dc:creator>
				<category><![CDATA[Asp.Net]]></category>
		<category><![CDATA[crystal reports]]></category>
		<category><![CDATA[deployment]]></category>

		<guid isPermaLink="false">http://www.serdarb.com/?p=697</guid>
		<description><![CDATA[on iis 7 there is an option to enable 32 bit applications. if you stuck in an exception be sure you enabled this.

http://sjc.ironspeed.com/post?id=3728528
]]></description>
		<wfw:commentRss>http://www.serdarb.com/aspnet/crystal-reports-deployment-on-64-bit-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Crystal Reports Web Deployment Gözükmeyen Resimler &#8211; Grafikler</title>
		<link>http://www.serdarb.com/aspnet/crystal-reports-web-deployment-gozukmeyen-resimler-grafikler/</link>
		<comments>http://www.serdarb.com/aspnet/crystal-reports-web-deployment-gozukmeyen-resimler-grafikler/#comments</comments>
		<pubDate>Tue, 26 May 2009 14:37:26 +0000</pubDate>
		<dc:creator>serdar</dc:creator>
				<category><![CDATA[Asp.Net]]></category>
		<category><![CDATA[crystal reports]]></category>

		<guid isPermaLink="false">http://www.serdarb.com/?p=612</guid>
		<description><![CDATA[CrystalDecisions.Web.CrystalImageHandler web config&#8217;den tanıtılmadığı için grafikleri göremiyor olabiliriz.
uygun versiyonda handler&#8217;ı ekleyerek aşabiliriz.

&#160;
&#60;httpHandlers&#62;
&#60;add verb=&#34;GET&#34; path=&#34;CrystalImageHandler.aspx&#34; 
        type=&#34;CrystalDecisions.Web.CrystalImageHandler, 
       CrystalDecisions.Web, Version=10.2.3600.0, 
       Culture=neutral, PublicKeyToken=692fbea5521e1304&#34;/&#62;
&#60;/httpHandlers&#62;

toolbar&#8217;daki resimler gözükmüyorsa,
server&#8217;da inetpub klasöründe aspnet_client klasörü var. O klasörü projenizin çalıştığı klasöre kopyalayarak aşabiliriz.
]]></description>
		<wfw:commentRss>http://www.serdarb.com/aspnet/crystal-reports-web-deployment-gozukmeyen-resimler-grafikler/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Asp.Net Session ve Handler</title>
		<link>http://www.serdarb.com/aspnet/aspnet-session-ve-handler/</link>
		<comments>http://www.serdarb.com/aspnet/aspnet-session-ve-handler/#comments</comments>
		<pubDate>Tue, 10 Feb 2009 12:33:45 +0000</pubDate>
		<dc:creator>serdar</dc:creator>
				<category><![CDATA[Asp.Net]]></category>
		<category><![CDATA[IRequiresSessionState]]></category>

		<guid isPermaLink="false">http://www.serdarb.com/index.php/2009/02/10/aspnet-session-ve-handler/</guid>
		<description><![CDATA[Handlerlar default olarak session değerlerini getirmiyorlar. 
Erişmek istediğinizde null oluyor. Eğer null olmasın istiyorsanız IRequiresSessionState veya IReadOnlySessionState interfacelerini implemente etmeniz gerekiyor.

using System.Web;
using System.Web.SessionState;
&#160;
public class MyHandler : IHttpHandler, IRequiresSessionState
&#123;
    public MyHandler&#40;&#41;
    &#123;
&#160;
    &#125;
&#160;
    #region IHttpHandler Members
&#160;
    public bool IsReusable
   [...]]]></description>
		<wfw:commentRss>http://www.serdarb.com/aspnet/aspnet-session-ve-handler/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Programatically Shutdown Web Application</title>
		<link>http://www.serdarb.com/aspnet/programatically-shutdown-web-application/</link>
		<comments>http://www.serdarb.com/aspnet/programatically-shutdown-web-application/#comments</comments>
		<pubDate>Fri, 30 Jan 2009 10:32:31 +0000</pubDate>
		<dc:creator>serdar</dc:creator>
				<category><![CDATA[Asp.Net]]></category>
		<category><![CDATA[appdomain]]></category>

		<guid isPermaLink="false">http://www.serdarb.com/index.php/2009/01/30/programatically-shutdown-web-application/</guid>
		<description><![CDATA[by using this static method we can shutdown our web application. Maybe it is not so useful, but we should know&#8230;

//Terminates the current application, it restarts next time it is requested.
System.Web.HttpRuntime.UnloadAppDomain&#40;&#41;;

msdn
]]></description>
		<wfw:commentRss>http://www.serdarb.com/aspnet/programatically-shutdown-web-application/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
