<?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>ASP Experts &#187; CodeDom</title>
	<atom:link href="http://www.aspexperts.com/tag/codedom/feed" rel="self" type="application/rss+xml" />
	<link>http://www.aspexperts.com</link>
	<description>.net programming, mssql, c#, vb.net....</description>
	<lastBuildDate>Tue, 07 Feb 2012 13:06:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>Debugging ASP.NET generated code</title>
		<link>http://www.aspexperts.com/debugging-asp-net-generated-code</link>
		<comments>http://www.aspexperts.com/debugging-asp-net-generated-code#comments</comments>
		<pubDate>Thu, 04 Feb 2010 00:31:16 +0000</pubDate>
		<dc:creator>Editor</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[MVC]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Reference]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[asp]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[CodeDom]]></category>
		<category><![CDATA[host]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[vb.net]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[This post applies to any ASP.NET app that uses .aspx files, whether WebForms or MVC. When you write an aspx/ascx/master file (I’ll just say aspx for here on, but it applies to all), it gets compiled dynamically by the ASP.NET runtime.&#160; Note that this is true whether you use a Web Site or a Web Application Project (WAP).&#160; While in a WAP, most of the code is built by Visual Studio, the aspx pages themselves are always built dynamically . Normally, when you work with aspx files, you only need to worry about what you write in there, and the specifics of what ASP.NET generates under the cover are somewhat of an implementation details.&#160; However, in some cases it’s pretty useful to look at the generated code, either to learn exactly...(<a href="http://blogs.msdn.com/davidebb/archive/2010/02/03/debugging-asp-net-generated-code.aspx">read more</a>)<img src="http://weblogs.asp.net/aggbug.aspx?PostID=7333516" width="1" height="1">]]></description>
			<content:encoded><![CDATA[<p>This post applies to any ASP.NET app that uses .aspx files, whether WebForms or MVC. When you write an aspx/ascx/master file (I’ll just say aspx for here on, but it applies to all), it gets compiled dynamically by the ASP.NET runtime.&#160; Note that this is true whether you use a Web Site or a Web Application Project (WAP).&#160; While in a WAP, most of the code is built by Visual Studio, the aspx pages themselves are always built dynamically . Normally, when you work with aspx files, you only need to worry about what you write in there, and the specifics of what ASP.NET generates under the cover are somewhat of an implementation details.&#160; However, in some cases it’s pretty useful to look at the generated code, either to learn exactly&#8230;(<a href="http://blogs.msdn.com/davidebb/archive/2010/02/03/debugging-asp-net-generated-code.aspx">read more</a>)<img src="http://weblogs.asp.net/aggbug.aspx?PostID=7333516" width="1" height="1"></p>
]]></content:encoded>
			<wfw:commentRss>http://www.aspexperts.com/debugging-asp-net-generated-code/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Take your MVC User Controls to the next level</title>
		<link>http://www.aspexperts.com/take-your-mvc-user-controls-to-the-next-level</link>
		<comments>http://www.aspexperts.com/take-your-mvc-user-controls-to-the-next-level#comments</comments>
		<pubDate>Wed, 13 Jan 2010 08:46:00 +0000</pubDate>
		<dc:creator>Editor</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[MVC]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Reference]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[asp]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[CodeDom]]></category>
		<category><![CDATA[host]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[vb.net]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Note: this is based on ASP.NET MVC 2 RC , and will not work on earlier builds. &#160; The quick pitch: make your User Controls as cool as built-in render helpers! The goal of this post is to show you how to change the way MVC user controls are called from something like this: &#60;%= Html.Partial(&#34;~/Views/Shared/gravatar.ascx&#34;, new { Email = &#34;foo@bar.com&#34;, Size = 80 }) %&#62; To something that looks just like a built-in render helper (like Html.TextBox(…)): &#60;%= Html.Gravatar(&#34;foo@bar.com&#34;, 80) %&#62; &#160; The current model for User Controls in MVC If you have used ASP.NET MVC, you probably know that you can use User Controls (.ascx files) to provide partial rendering. For example, the default MVC app has a Site...(<a href="http://blogs.msdn.com/davidebb/archive/2010/01/13/take-your-mvc-user-controls-to-the-next-level.aspx">read more</a>)<img src="http://weblogs.asp.net/aggbug.aspx?PostID=7309333" width="1" height="1">]]></description>
			<content:encoded><![CDATA[<p>Note: this is based on ASP.NET MVC 2 RC , and will not work on earlier builds. &#160; The quick pitch: make your User Controls as cool as built-in render helpers! The goal of this post is to show you how to change the way MVC user controls are called from something like this: &lt;%= Html.Partial(&quot;~/Views/Shared/gravatar.ascx&quot;, new { Email = &quot;foo@bar.com&quot;, Size = 80 }) %&gt; To something that looks just like a built-in render helper (like Html.TextBox(…)): &lt;%= Html.Gravatar(&quot;foo@bar.com&quot;, 80) %&gt; &#160; The current model for User Controls in MVC If you have used ASP.NET MVC, you probably know that you can use User Controls (.ascx files) to provide partial rendering. For example, the default MVC app has a Site&#8230;(<a href="http://blogs.msdn.com/davidebb/archive/2010/01/13/take-your-mvc-user-controls-to-the-next-level.aspx">read more</a>)<img src="http://weblogs.asp.net/aggbug.aspx?PostID=7309333" width="1" height="1"></p>
]]></content:encoded>
			<wfw:commentRss>http://www.aspexperts.com/take-your-mvc-user-controls-to-the-next-level/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

