<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://weblogs.asp.net/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Paulo Morgado - All Comments</title><link>http://weblogs.asp.net/paulomorgado/default.aspx</link><description /><dc:language>en</dc:language><generator>CommunityServer 2007 SP1 (Debug Build: 20510.895)</generator><item><title>Paulo Morgado : Outras Formas De Fazer Com Que PathInfo E ASP.NET Themes Coexistam</title><link>http://weblogs.asp.net/paulomorgado/archive/2008/07/24/making-pathinfo-and-asp-net-themes-work-together.aspx#6440837</link><pubDate>Fri, 25 Jul 2008 00:24:47 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:6440837</guid><dc:creator>Paulo Morgado : Outras Formas De Fazer Com Que PathInfo E ASP.NET Themes Coexistam</dc:creator><description>&lt;p&gt;Pingback from &amp;nbsp;Paulo Morgado : Outras Formas De Fazer Com Que PathInfo E ASP.NET Themes Coexistam&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6440837" width="1" height="1"&gt;</description></item><item><title>Other Ways For Making PathInfo And ASP.NET Themes Work Together - Paulo Morgado</title><link>http://weblogs.asp.net/paulomorgado/archive/2008/07/24/making-pathinfo-and-asp-net-themes-work-together.aspx#6440797</link><pubDate>Fri, 25 Jul 2008 00:08:10 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:6440797</guid><dc:creator>Other Ways For Making PathInfo And ASP.NET Themes Work Together - Paulo Morgado</dc:creator><description>&lt;p&gt;Pingback from &amp;nbsp;Other Ways For Making PathInfo And ASP.NET Themes Work Together - Paulo Morgado&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6440797" width="1" height="1"&gt;</description></item><item><title>Other Ways For Making PathInfo And ASP.NET Themes Work Together - Paulo Morgado</title><link>http://weblogs.asp.net/paulomorgado/archive/2008/07/24/making-pathinfo-and-asp-net-themes-work-together.aspx#6440796</link><pubDate>Fri, 25 Jul 2008 00:07:53 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:6440796</guid><dc:creator>Other Ways For Making PathInfo And ASP.NET Themes Work Together - Paulo Morgado</dc:creator><description>&lt;p&gt;Pingback from &amp;nbsp;Other Ways For Making PathInfo And ASP.NET Themes Work Together - Paulo Morgado&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6440796" width="1" height="1"&gt;</description></item><item><title>re: Making PathInfo And ASP.NET Themes Work Together</title><link>http://weblogs.asp.net/paulomorgado/archive/2008/07/24/making-pathinfo-and-asp-net-themes-work-together.aspx#6440450</link><pubDate>Thu, 24 Jul 2008 21:47:46 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:6440450</guid><dc:creator>Paulo Morgado</dc:creator><description>&lt;p&gt;Hi Raj,&lt;/p&gt;
&lt;p&gt;Great idea. Let me think about it for a while.&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6440450" width="1" height="1"&gt;</description></item><item><title>re: Making PathInfo And ASP.NET Themes Work Together</title><link>http://weblogs.asp.net/paulomorgado/archive/2008/07/24/making-pathinfo-and-asp-net-themes-work-together.aspx#6440027</link><pubDate>Thu, 24 Jul 2008 19:01:49 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:6440027</guid><dc:creator>rajbk</dc:creator><description>&lt;p&gt;You could also root the url by using the following code in your base page (not tested completely). Similar code could be used in the master page also:&lt;/p&gt;&lt;pre style="font-face:consolas, courier new;"&gt;protected override void OnInit(EventArgs e
{
&amp;nbsp; &amp;nbsp;base.OnInit(e);
&amp;nbsp; &amp;nbsp;foreach (Control headerControl in this.Page.Header.Controls)
&amp;nbsp; &amp;nbsp;{
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;HtmlLink link = headerControl as HtmlLink;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;if (link != null)
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;{
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;if (link.Href.StartsWith(&amp;quot;~/App_Themes&amp;quot;))
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;{
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;link.Href = Request.Url.GetLeftPart(UriPartial.Authority) +
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Page.ResolveUrl(link.Href);
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}
&amp;nbsp; &amp;nbsp;}
}&lt;/pre&gt;&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6440027" width="1" height="1"&gt;</description></item><item><title>re: BEWARE: System.Web.HttpValueCollection Parsing Is Not Reversible</title><link>http://weblogs.asp.net/paulomorgado/archive/2008/07/14/beware-system-web-httpvaluecollection-parsing-is-not-reversible.aspx#6433116</link><pubDate>Tue, 22 Jul 2008 20:28:33 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:6433116</guid><dc:creator>RichardD</dc:creator><description>&lt;p&gt;The null key in the query-string collection can also have some pretty nasty side-effects:&lt;/p&gt;
&lt;p&gt;&lt;a href="https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=357344" target="_new" rel="nofollow"&gt;connect.microsoft.com/.../ViewFeedback.aspx&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;If you use a DataPager control with a QueryStringField, and the query-string contains a null key, the page will die horribly with a NullReferenceException from the internal GetQueryStringNavigateUrl method.&lt;/p&gt;&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6433116" width="1" height="1"&gt;</description></item><item><title>Weekly Web Nuggets #19</title><link>http://weblogs.asp.net/paulomorgado/archive/2008/06/29/replacing-loaded-assemblies.aspx#6374248</link><pubDate>Tue, 08 Jul 2008 01:38:52 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:6374248</guid><dc:creator>Code Monkey Labs</dc:creator><description>&lt;p&gt;Happy 4th of July! General First Impressions of Rhino Mocks 3.5 Beta : Derik Whittaker takes a look at the beta of Rhino Mocks 3.5. One of the major new features is that the syntax has been updated to take advantage of the new language features in .NET&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6374248" width="1" height="1"&gt;</description></item><item><title>re: Web Authoring Component install fails when installing Visual Studio 2008</title><link>http://weblogs.asp.net/paulomorgado/archive/2008/03/23/web-authoring-component-install-fails-when-installing-visual-studio-2008.aspx#6373344</link><pubDate>Mon, 07 Jul 2008 21:30:40 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:6373344</guid><dc:creator>Paulo Morgado</dc:creator><description>&lt;p&gt;Didn't this hack solve your problem?&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6373344" width="1" height="1"&gt;</description></item><item><title>re: Web Authoring Component install fails when installing Visual Studio 2008</title><link>http://weblogs.asp.net/paulomorgado/archive/2008/03/23/web-authoring-component-install-fails-when-installing-visual-studio-2008.aspx#6373312</link><pubDate>Mon, 07 Jul 2008 21:19:17 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:6373312</guid><dc:creator>AndreTexier</dc:creator><description>&lt;p&gt;I have the same problem on Windows Vista. I try to install the Web Authoring Component manually but it seems to fail doing it so. Can anyone help me?&lt;/p&gt;&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6373312" width="1" height="1"&gt;</description></item><item><title>re: I’m A Microsoft MVP For The 6th Time And I FEEL GREAT</title><link>http://weblogs.asp.net/paulomorgado/archive/2008/07/01/i-m-a-microsoft-mvp-for-the-6th-time-and-i-feel-great.aspx#6349608</link><pubDate>Wed, 02 Jul 2008 09:17:33 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:6349608</guid><dc:creator>Paulo Morgado</dc:creator><description>&lt;p&gt;Thanks, Mohammad!&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6349608" width="1" height="1"&gt;</description></item></channel></rss>