<?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>Teknober Blog &#187; ASP.Net</title>
	<atom:link href="http://blog.teknober.com/category/development/asp-net/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.teknober.com</link>
	<description>Blog</description>
	<lastBuildDate>Mon, 07 May 2012 09:54:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
		<item>
		<title>OpenSSL loading openssl.cnf</title>
		<link>http://blog.teknober.com/2012/02/08/openssl-loading-openssl-cnf/</link>
		<comments>http://blog.teknober.com/2012/02/08/openssl-loading-openssl-cnf/#comments</comments>
		<pubDate>Wed, 08 Feb 2012 21:17:46 +0000</pubDate>
		<dc:creator>editor</dc:creator>
				<category><![CDATA[ASP.Net]]></category>
		<category><![CDATA[Administration]]></category>
		<category><![CDATA[Apache HTTPd]]></category>
		<category><![CDATA[C]]></category>
		<category><![CDATA[CSharp]]></category>
		<category><![CDATA[Cassandar NoSQL]]></category>
		<category><![CDATA[Database Servers]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[GIT]]></category>
		<category><![CDATA[Internet Information Services]]></category>
		<category><![CDATA[MariaDB Server]]></category>
		<category><![CDATA[Micsoft SQL Server]]></category>
		<category><![CDATA[MySQL Server]]></category>
		<category><![CDATA[OpenSSL]]></category>
		<category><![CDATA[PDO]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[SVN]]></category>
		<category><![CDATA[Web Servers]]></category>
		<category><![CDATA[Windows Servers]]></category>
		<category><![CDATA[openssl]]></category>
		<category><![CDATA[openssl config]]></category>
		<category><![CDATA[openssl generate certificate]]></category>
		<category><![CDATA[unable to load openssl.cnf]]></category>

		<guid isPermaLink="false">http://blog.teknober.com/?p=309</guid>
		<description><![CDATA[since the openssl.cnf path is hardcoded in binaries. to alter it on windows set environmental variable (as written): OPENSSLDIR=C:\PATH\TO\OpenSSL\bin OPENSSL_CONF=C:\PATH\TO\OpenSSL\bin\openssl.cnf OPENSSL_CONF doesn&#8217;t work without OPENSSLDIR even if it is set. settings these options will allow you to use your custom configuration files when creating certificates. batch file i use to create certificate GenCERT.bat [save this]]></description>
		<wfw:commentRss>http://blog.teknober.com/2012/02/08/openssl-loading-openssl-cnf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML remove cookies from static files, images etc</title>
		<link>http://blog.teknober.com/2011/03/24/html-remove-cookies-from-static-files-images-etc/</link>
		<comments>http://blog.teknober.com/2011/03/24/html-remove-cookies-from-static-files-images-etc/#comments</comments>
		<pubDate>Thu, 24 Mar 2011 04:08:14 +0000</pubDate>
		<dc:creator>editor</dc:creator>
				<category><![CDATA[ASP.Net]]></category>
		<category><![CDATA[Administration]]></category>
		<category><![CDATA[Apache HTTPd]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Web Servers]]></category>
		<category><![CDATA[cookies]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[static files]]></category>

		<guid isPermaLink="false">http://blog.teknober.com/?p=173</guid>
		<description><![CDATA[If you have not configured your application and server, it might send them to browser with cookie information. that&#8217;s costing you as extra traffic and slow load times. &#60;FilesMatch "\.(css&#124;js&#124;jpg&#124;jpeg&#124;png&#124;gif)$"&#62; &#60;IfModule mod_headers.c&#62; Header set cookie "" &#60;/IfModule&#62; &#60;/FilesMatch&#62;]]></description>
		<wfw:commentRss>http://blog.teknober.com/2011/03/24/html-remove-cookies-from-static-files-images-etc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML Reduce time on page load using performance images</title>
		<link>http://blog.teknober.com/2011/03/24/html-reduce-time-on-page-load-using-performance-images/</link>
		<comments>http://blog.teknober.com/2011/03/24/html-reduce-time-on-page-load-using-performance-images/#comments</comments>
		<pubDate>Thu, 24 Mar 2011 03:56:00 +0000</pubDate>
		<dc:creator>editor</dc:creator>
				<category><![CDATA[ASP.Net]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[parallel download]]></category>
		<category><![CDATA[performance image]]></category>

		<guid isPermaLink="false">http://blog.teknober.com/?p=168</guid>
		<description><![CDATA[used this method while ago when i was working for one of those websites in top 10 the purpose was to reduce the loading time of the page and improve the parallel download $(document).ready(function() { /* apply performance image */ $.each($('img'), function(k, v) { var src = $(v).attr('src'); if (src.indexOf('#') &#62;= 0) { src =]]></description>
		<wfw:commentRss>http://blog.teknober.com/2011/03/24/html-reduce-time-on-page-load-using-performance-images/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ASP.Net Temporary Files Path</title>
		<link>http://blog.teknober.com/2011/01/28/asp-net-temporary-files-path/</link>
		<comments>http://blog.teknober.com/2011/01/28/asp-net-temporary-files-path/#comments</comments>
		<pubDate>Fri, 28 Jan 2011 02:48:27 +0000</pubDate>
		<dc:creator>editor</dc:creator>
				<category><![CDATA[ASP.Net]]></category>
		<category><![CDATA[Administration]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Internet Information Services]]></category>
		<category><![CDATA[Web Servers]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[path]]></category>
		<category><![CDATA[temporary]]></category>

		<guid isPermaLink="false">http://blog.teknober.com/?p=107</guid>
		<description><![CDATA[To change &#8220;Temporary ASP.NET Files&#8221;: go to %WINDIR%\Microsoft.NET\Framework\v2.0.50727\CONFIG\ -&#62; open machine.config -&#62; add the following line to section &#60;system.web&#62; &#60;compilation tempDirectory="C:\WebTemp\" /&#62; &#60;/system.web&#62; -&#62; save and close the file -&#62; restart IIS.]]></description>
		<wfw:commentRss>http://blog.teknober.com/2011/01/28/asp-net-temporary-files-path/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTTP Status Codes</title>
		<link>http://blog.teknober.com/2011/01/26/http-status-codes/</link>
		<comments>http://blog.teknober.com/2011/01/26/http-status-codes/#comments</comments>
		<pubDate>Wed, 26 Jan 2011 20:40:48 +0000</pubDate>
		<dc:creator>editor</dc:creator>
				<category><![CDATA[ASP.Net]]></category>
		<category><![CDATA[Administration]]></category>
		<category><![CDATA[Apache HTTPd]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Internet Information Services]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Web Servers]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[header]]></category>
		<category><![CDATA[http]]></category>
		<category><![CDATA[iis]]></category>
		<category><![CDATA[status]]></category>

		<guid isPermaLink="false">http://blog.teknober.com/?p=71</guid>
		<description><![CDATA[HTTP Status Codes &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212; 200     : request completed (OK) 201     : object created, reason = new URI 202     : async completion (TBS) 203     : partial completion 204     : no info to return 205     : request completed, but clear form 206     : partial GET furfilled 300     : server]]></description>
		<wfw:commentRss>http://blog.teknober.com/2011/01/26/http-status-codes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

