<?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>Trent Jones &#187; ASP.NET</title>
	<atom:link href="http://www.trentjones.net/index.php/tag/aspnet/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.trentjones.net</link>
	<description>DoSomething();</description>
	<lastBuildDate>Mon, 15 Mar 2010 19:27:32 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Auto-Start ASP.NET Applications</title>
		<link>http://www.trentjones.net/index.php/2009/09/auto-start-asp-net-applications/</link>
		<comments>http://www.trentjones.net/index.php/2009/09/auto-start-asp-net-applications/#comments</comments>
		<pubDate>Wed, 16 Sep 2009 16:35:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[.NET 4.0]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[IIS]]></category>

		<guid isPermaLink="false">http://www.trentjones.net/index.php/2009/09/auto-start-asp-net-applications/</guid>
		<description><![CDATA[Scott Guthrie has an article up on his website discussing the new auto-start feature of web applications that will be available in IIS7.5 with ASP.NET 4.0.  I just learned about this last week at the Southern Fried Road Show. http://weblogs.asp.net/scottgu/archive/2009/09/15/auto-start-asp-net-applications-vs-2010-and-net-4-0-series.aspx]]></description>
			<content:encoded><![CDATA[<p><a href="http://weblogs.asp.net/scottgu">Scott Guthrie</a> has an article up on his website discussing the new auto-start feature of web applications that will be available in IIS7.5 with ASP.NET 4.0.  I just learned about this last week at the Southern Fried Road Show.</p>
<p><a title="http://weblogs.asp.net/scottgu/archive/2009/09/15/auto-start-asp-net-applications-vs-2010-and-net-4-0-series.aspx" href="http://weblogs.asp.net/scottgu/archive/2009/09/15/auto-start-asp-net-applications-vs-2010-and-net-4-0-series.aspx">http://weblogs.asp.net/scottgu/archive/2009/09/15/auto-start-asp-net-applications-vs-2010-and-net-4-0-series.aspx</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.trentjones.net/index.php/2009/09/auto-start-asp-net-applications/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Membership, Roles and Profiles</title>
		<link>http://www.trentjones.net/index.php/2009/05/membership-roles-and-profiles/</link>
		<comments>http://www.trentjones.net/index.php/2009/05/membership-roles-and-profiles/#comments</comments>
		<pubDate>Wed, 06 May 2009 14:47:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[.NET Custom Providers]]></category>
		<category><![CDATA[ASP.NET]]></category>

		<guid isPermaLink="false">http://www.trentjones.net/?p=131</guid>
		<description><![CDATA[Recently i&#8217;ve been researching the default providers in .NET for Membership, Roles and Profiles and came across this code which provides a custom implementation of the above with simple db structures behind them. http://altairiswebsecurity.codeplex.com/]]></description>
			<content:encoded><![CDATA[<p>Recently i&#8217;ve been researching the default providers in .NET for Membership, Roles and Profiles and came across this code which provides a custom implementation of the above with simple db structures behind them.  <a href="http://altairiswebsecurity.codeplex.com/">http://altairiswebsecurity.codeplex.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.trentjones.net/index.php/2009/05/membership-roles-and-profiles/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JQuery.UI Dialog with ASP.NET empty post values</title>
		<link>http://www.trentjones.net/index.php/2009/03/jqueryui-dialog-with-aspnet-empty-post-values/</link>
		<comments>http://www.trentjones.net/index.php/2009/03/jqueryui-dialog-with-aspnet-empty-post-values/#comments</comments>
		<pubDate>Fri, 20 Mar 2009 17:20:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[codeproject]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[jQuery.UI]]></category>

		<guid isPermaLink="false">http://www.trentjones.net/?p=107</guid>
		<description><![CDATA[Ran into an issue using a jQuery.UI.Dialog control on an asp.net web form today.&#160; When defining a dialog jQuery.UI takes the dialog and appends it right before the closing &#60;/body&#62; tag.&#160; This is outside of the &#60;form&#62; tag causing any values you wanted from the form to be empty in your code-behind. Here is the [...]]]></description>
			<content:encoded><![CDATA[<p>Ran into an issue using a jQuery.UI.Dialog control on an asp.net web form today.&#160; When defining a dialog jQuery.UI takes the dialog and appends it right before the closing &lt;/body&gt; tag.&#160; This is outside of the &lt;form&gt; tag causing any values you wanted from the form to be empty in your code-behind.</p>
<p>Here is the fix that worked for me:</p>
<pre><code>$('#dialog').parent().appendTo('/html/body/form[0]');</code></pre>
<p>
  <br />This works great and the dialog now displays as expected, capturing the results in the code behind except for I originally wanted the dialog wrapped in a UpdatePanel. In order to fix this issue, I created an empty div and appended the dialog content there: </p>
<p></p>
<pre class="brush: js; auto-links: false;">$('#dialog').parent().appendTo('#dialog_target');</pre>
<p>
  <br />Not the results i expected. When the content refreshes the dialog is messed up. The answer was to move the content panel inside of the dialog with the user control doing all the work!!! </p>
<p></p>
<pre class="brush: xml; auto-links: false;"><code>&lt;div id="dialog" class="ui-widget-content ui-corner-all" title="Add New Client"&gt;&lt;/div&gt;</code></pre>
]]></content:encoded>
			<wfw:commentRss>http://www.trentjones.net/index.php/2009/03/jqueryui-dialog-with-aspnet-empty-post-values/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
