<?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>Hans Rasmussen &#187; web.config</title>
	<atom:link href="http://www.hansrasmussen.com/tag/web-config/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.hansrasmussen.com</link>
	<description>info@hansrasmussen.com, +46 (0)723 207008</description>
	<lastBuildDate>Wed, 01 Feb 2012 11:59:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Encoding in your Visual Studio project</title>
		<link>http://www.hansrasmussen.com/2010/02/encoding-in-your-visual-studio-project/</link>
		<comments>http://www.hansrasmussen.com/2010/02/encoding-in-your-visual-studio-project/#comments</comments>
		<pubDate>Fri, 19 Feb 2010 23:47:26 +0000</pubDate>
		<dc:creator>Hans Rasmussen</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Visual Studio]]></category>
		<category><![CDATA[web.config]]></category>

		<guid isPermaLink="false">http://www.hansrasmussen.com/?p=50</guid>
		<description><![CDATA[Have you experienced problems in your Visual Studio projects that no matter which encoding you try to use in your pages &#60;?xml version=&#8221;1.0&#8243; encoding=&#8221;iso-8859-1&#8243;?&#62; for XML or &#60;meta http-equiv=&#8221;Content-Type&#8221; content=&#8221;text/html; charset=iso-8859-1&#8243; /&#62; but still you have problems solving swedish characters such as å, å and ö when posting information to external webservice etc.  Try and configure [...]]]></description>
			<content:encoded><![CDATA[<p>Have you experienced problems in your Visual Studio projects that no matter which encoding you try to use in your pages &lt;?xml version=&#8221;1.0&#8243; encoding=&#8221;iso-8859-1&#8243;?&gt; for XML or &lt;meta http-equiv=&#8221;Content-Type&#8221; content=&#8221;text/html; charset=iso-8859-1&#8243; /&gt; but still you have problems solving swedish characters such as å, å and ö when posting information to external webservice etc.</p>
<p> Try and configure your application&#8217;s web.config file and add encoding to your globalization element and now things are working way better.</p>
<p> &lt;system.web&gt;</p>
<p>    &lt;globalization</p>
<p>               fileEncoding=&#8221;iso-8859-1&#8243;</p>
<p>               requestEncoding=&#8221;iso-8859-1&#8243;</p>
<p>               responseEncoding=&#8221;iso-8859-1&#8243;</p>
<p>        /&gt;</p>
<p>&lt;/system.web&gt;</p>
<p> This behavior to determine encoding is probably the reason why a WebForm intitially contains no information about encoding at all.</p>
<p>&lt;%@ Page Language=&#8221;C#&#8221; AutoEventWireup=&#8221;true&#8221; CodeBehind=&#8221;WebForm1.aspx.cs&#8221; Inherits=&#8221;WebForm1&#8243; %&gt;</p>
<p>&lt;!DOCTYPE html PUBLIC &#8220;-//W3C//DTD XHTML 1.0 Transitional//EN&#8221; &#8220;<a href="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd</a>&#8220;&gt;</p>
<p>&lt;html xmlns=&#8221;<a href="http://www.w3.org/1999/xhtml">http://www.w3.org/1999/xhtml</a>&#8221; &gt;</p>
<p>&lt;head runat=&#8221;server&#8221;&gt;</p>
<p>    &lt;title&gt;Untitled Page&lt;/title&gt;</p>
<p>&lt;/head&gt;</p>
<p>&lt;body&gt;</p>
<p>    &lt;form id=&#8221;form1&#8243; runat=&#8221;server&#8221;&gt;</p>
<p>    &lt;div&gt;</p>
<p>    &lt;/div&gt;</p>
<p>    &lt;/form&gt;</p>
<p>&lt;/body&gt;</p>
<p>&lt;/html&gt;</p>
<p>More information can be found on <a href="http://msdn.microsoft.com/en-us/library/ydkak5b9(VS.71).aspx" target="_blank">Microsoft Website regarding Globalization</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.hansrasmussen.com/2010/02/encoding-in-your-visual-studio-project/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Enable AJAX Support in SharePoint,WSS, MOSS 2007</title>
		<link>http://www.hansrasmussen.com/2010/02/enable-ajax-support-in-sharepointwss-moss-2007/</link>
		<comments>http://www.hansrasmussen.com/2010/02/enable-ajax-support-in-sharepointwss-moss-2007/#comments</comments>
		<pubDate>Fri, 19 Feb 2010 23:45:50 +0000</pubDate>
		<dc:creator>Hans Rasmussen</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[web.config]]></category>
		<category><![CDATA[WSS]]></category>

		<guid isPermaLink="false">http://www.hansrasmussen.com/?p=46</guid>
		<description><![CDATA[Microsoft suggests the following changes to web.config for your SharePoint installation if you want to enable AJAX functionality. http://msdn.microsoft.com/en-us/library/bb861898.aspx However it is easier to use this Feature and activate it through SharePoint central administration. Benefits are that it both creates the changes when you activate and undo the changes when you deactivate. And from a [...]]]></description>
			<content:encoded><![CDATA[<p>Microsoft suggests the following changes to web.config for your SharePoint installation if you want to enable AJAX functionality. <a href="http://msdn.microsoft.com/en-us/library/bb861898.aspx">http://msdn.microsoft.com/en-us/library/bb861898.aspx</a></p>
<p>However it is easier to use this Feature and activate it through SharePoint central administration. Benefits are that it both creates the changes when you activate and undo the changes when you deactivate. And from a deployment perspective it is more &#8220;clean&#8221;.</p>
<p><a href="http://www.moss2007.be/blogs/vandest/Documents/SPWebConfig_XML.zip">http://www.moss2007.be/blogs/vandest/Documents/SPWebConfig_XML.zip</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.hansrasmussen.com/2010/02/enable-ajax-support-in-sharepointwss-moss-2007/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

