<?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>iamshendy &#187; ASP.NET</title>
	<atom:link href="http://www.iamshendy.ca/tag/aspnet/feed" rel="self" type="application/rss+xml" />
	<link>http://www.iamshendy.ca</link>
	<description>Who you know like Shendy?</description>
	<lastBuildDate>Fri, 14 May 2010 01:59:21 +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>ASP.NET Type &lt;class&gt; exists in both&#8230;</title>
		<link>http://www.iamshendy.ca/shendys-dev-corner/aspnet-type-class-exists-in-both</link>
		<comments>http://www.iamshendy.ca/shendys-dev-corner/aspnet-type-class-exists-in-both#comments</comments>
		<pubDate>Tue, 13 Jan 2009 20:52:20 +0000</pubDate>
		<dc:creator>Shendy</dc:creator>
				<category><![CDATA[Shendy's Dev Corner]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[compile]]></category>
		<category><![CDATA[type]]></category>

		<guid isPermaLink="false">http://www.iamshendy.ca/?p=83</guid>
		<description><![CDATA[Receiving a rando-error similar to the one found on a post in the ASP.NET Forums
While the solution provided in the post didn&#8217;t help me specifically, it did point me in the right direction.
I also came across another potential solution here.
In addition to the solution provided at Mark Carroll&#8217;s blog. I had to republish the site [...]]]></description>
			<content:encoded><![CDATA[<p>Receiving a rando-error similar to the one found on a <a href="http://forums.asp.net/t/980517.aspx" onclick="javascript:pageTracker._trackPageview('/outbound/article/forums.asp.net');" target="_blank">post in the ASP.NET Forums</a></p>
<p>While the solution provided in the post didn&#8217;t help me specifically, it did point me in the right direction.</p>
<p>I also came across another <a href="http://blogs.mgtechgroup.com/markc/archive/2007/05/02/ASP.NET-PreviousPage-Type-exists-in-both.aspx" onclick="javascript:pageTracker._trackPageview('/outbound/article/blogs.mgtechgroup.com');" target="_blank">potential solution here</a>.</p>
<p>In addition to the solution provided at <a href="http://blogs.mgtechgroup.com/markc/" onclick="javascript:pageTracker._trackPageview('/outbound/article/blogs.mgtechgroup.com');" target="_blank">Mark Carroll&#8217;s blog</a>. I had to republish the site to force a recompile (I would imagine that putting a space in the web.config would have done the same thing).</p>
<p>Thanks to these guys for pointing me in the right direction.</p>
<p>Shendy.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.iamshendy.ca/shendys-dev-corner/aspnet-type-class-exists-in-both/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating a CData node with ASP.NET</title>
		<link>http://www.iamshendy.ca/shendys-dev-corner/creating-a-cdata-with-aspnet</link>
		<comments>http://www.iamshendy.ca/shendys-dev-corner/creating-a-cdata-with-aspnet#comments</comments>
		<pubDate>Tue, 13 Jan 2009 17:46:00 +0000</pubDate>
		<dc:creator>Shendy</dc:creator>
				<category><![CDATA[Shendy's Dev Corner]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[CDATA]]></category>
		<category><![CDATA[CreateCDataSection]]></category>
		<category><![CDATA[CreateTextNode]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://www.iamshendy.ca/?p=73</guid>
		<description><![CDATA[I was trying to create a CDATA section with an XML file, and had something like this:
var pinEntrySubmitBtnURL = copyXML.CreateElement(&#8220;pinEntry_submitBtn_URL&#8221;);
var pinEntrySubmitBtnURLContent = copyXML.CreateTextNode( &#8220;&#60;![CDATA[hidden_pin.ashx]]&#62;&#8221;);
pinEntrySubmitBtnURL.AppendChild(pinEntrySubmitBtnURLContent);
copyNodes.Add( pinEntrySubmitBtnURL );
All of my intended XML data was coming out as escaped XML:
&#38;lt;![CDATA[hidden_pin.ashx]]&#38;gt;
It took me a few minutes to track this down, but eventually Intellisense gave me the answer. Turns out [...]]]></description>
			<content:encoded><![CDATA[<p>I was trying to create a CDATA section with an XML file, and had something like this:</p>
<p><span style="font-size: xx-small; font-family: Courier New;">var pinEntrySubmitBtnURL = copyXML.CreateElement(&#8220;pinEntry_submitBtn_URL&#8221;);<br />
var pinEntrySubmitBtnURLContent = copyXML.CreateTextNode( &#8220;&lt;![CDATA[hidden_pin.ashx]]&gt;&#8221;);<br />
pinEntrySubmitBtnURL.AppendChild(pinEntrySubmitBtnURLContent);<br />
copyNodes.Add( pinEntrySubmitBtnURL );</span></p>
<p>All of my intended XML data was coming out as escaped XML:</p>
<p><span style="font-family: Courier New;">&amp;lt;![CDATA[hidden_pin.ashx]]&amp;gt;</span></p>
<p>It took me a few minutes to track this down, but eventually Intellisense gave me the answer. Turns out you need to use the CreateCDataSection function instead:</p>
<p><span style="font-size: xx-small; font-family: courier new;">var pinEntrySubmitBtnURL = copyXML.CreateElement(&#8220;pinEntry_submitBtn_URL&#8221;);<br />
var pinEntrySubmitBtnURLContent = copyXML.CreateCDataSection( &#8220;hidden_pin.ashx&#8221;);<br />
pinEntrySubmitBtnURL.AppendChild(pinEntrySubmitBtnURLContent);<br />
copyNodes.Add( pinEntrySubmitBtnURL );</span></p>
<p>I spent some time searching on the net and couldn&#8217;t find any clear examples of this &#8211; so hopefully this helps you out.</p>
<p>Shendy.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.iamshendy.ca/shendys-dev-corner/creating-a-cdata-with-aspnet/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
