<?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; Visual Studio</title>
	<atom:link href="http://www.hansrasmussen.com/tag/visual-studio/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>Adding references to Silverlight toolkit in Visual Studio 2008 and Blend 3</title>
		<link>http://www.hansrasmussen.com/2010/02/adding-references-to-silverlight-toolkit-in-visual-studio-2008-and-blend-3/</link>
		<comments>http://www.hansrasmussen.com/2010/02/adding-references-to-silverlight-toolkit-in-visual-studio-2008-and-blend-3/#comments</comments>
		<pubDate>Fri, 19 Feb 2010 23:43:48 +0000</pubDate>
		<dc:creator>Hans Rasmussen</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Silverlight]]></category>
		<category><![CDATA[Visual Studio]]></category>

		<guid isPermaLink="false">http://www.hansrasmussen.com/?p=43</guid>
		<description><![CDATA[If you want to learn and develop some Silverlight components (which I do recommend you start learning how to); Download Microsoft&#38;reg; Silverlight&#38;trade; 3 Tools for Visual Studio 2008 http://www.microsoft.com/downloads/details.aspx?familyid=9442b0f2-7465-417a-88f3-5e7b5409e9dd&#38;amp;displaylang=en Download Silverlight Control Toolkit from CodePlex http://www.codeplex.com/Silverlight Add references to Silverlight Control Toolkit in Visual Studio 2008 and Blend 3, so you can start using it [...]]]></description>
			<content:encoded><![CDATA[<p>If you want to learn and develop some Silverlight components (which I do recommend you start learning how to);</p>
<p>Download Microsoft&amp;reg; Silverlight&amp;trade; 3 Tools for Visual Studio 2008 <a href="http://www.microsoft.com/downloads/details.aspx?familyid=9442b0f2-7465-417a-88f3-5e7b5409e9dd&amp;amp;displaylang=en">http://www.microsoft.com/downloads/details.aspx?familyid=9442b0f2-7465-417a-88f3-5e7b5409e9dd&amp;amp;displaylang=en</a></p>
<p>Download Silverlight Control Toolkit from CodePlex <a href="http://www.codeplex.com/Silverlight">http://www.codeplex.com/Silverlight</a></p>
<p>Add references to Silverlight Control Toolkit in Visual Studio 2008 and Blend 3, so you can start using it <a href="http://blog.enginefour.com/blog/post/Adding-Silverlight-Toolkit-Controls-to-the-Visual-Studio-and-Blend-Toolbox.aspx">http://blog.enginefour.com/blog/post/Adding-Silverlight-Toolkit-Controls-to-the-Visual-Studio-and-Blend-Toolbox.aspx</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.hansrasmussen.com/2010/02/adding-references-to-silverlight-toolkit-in-visual-studio-2008-and-blend-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CRM Web reference vs CRM SDK</title>
		<link>http://www.hansrasmussen.com/2010/02/crm-web-reference-vs-crm-sdk/</link>
		<comments>http://www.hansrasmussen.com/2010/02/crm-web-reference-vs-crm-sdk/#comments</comments>
		<pubDate>Fri, 19 Feb 2010 23:21:11 +0000</pubDate>
		<dc:creator>Hans Rasmussen</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[CRM]]></category>
		<category><![CDATA[Visual Studio]]></category>
		<category><![CDATA[Webservice]]></category>

		<guid isPermaLink="false">http://www.hansrasmussen.com/?p=24</guid>
		<description><![CDATA[While working in a project where we integrate with CRM, I noticed how important it is not to mix the ways you can integrate with. Either you create a reference to the CRM Web service in your Visual Studio project and the proxy classes are generated. Or you can reference microsoft.crm.sdk.dll and microsoft.crm.sdktypeproxy.dll that exists&#38;nbsp;in [...]]]></description>
			<content:encoded><![CDATA[<p>While working in a project where we integrate with CRM, I noticed how important it is not to mix the ways you can integrate with.</p>
<p>Either you create a reference to the CRM Web service in your Visual Studio project and the proxy classes are generated.</p>
<p>Or you can reference microsoft.crm.sdk.dll and microsoft.crm.sdktypeproxy.dll that exists&amp;nbsp;in the CRM SDK.</p>
<p>You will soon notice that if you create a Request object, or maybe a BusinessEntity, DynamicEntity they are not compatible with eachother, and furthermore they might not even have the same methods and properties.</p>
<p>My recommendation is to use the CRM SDK only and never create a Web reference from within Visual Studio. The CRM SDK objects have more friendly properties and methods.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hansrasmussen.com/2010/02/crm-web-reference-vs-crm-sdk/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

