<?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>Alonso Robles &#187; asp.net 2.0</title>
	<atom:link href="http://alonsorobles.com/tag/aspnet-20/feed/" rel="self" type="application/rss+xml" />
	<link>http://alonsorobles.com</link>
	<description>technology, academia, and other tidbits from the trenches of a boggled mind</description>
	<lastBuildDate>Wed, 18 Apr 2012 02:48:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Enabling the SharePoint Safe Mode Call Stack, Disabling Custom Errors and Enabiling Compilation Debugging</title>
		<link>http://alonsorobles.com/2008/06/09/enabling-the-sharepoint-safe-mode-call-stack-disabling-custom-errors-and-enabling-compilation-debugging/</link>
		<comments>http://alonsorobles.com/2008/06/09/enabling-the-sharepoint-safe-mode-call-stack-disabling-custom-errors-and-enabling-compilation-debugging/#comments</comments>
		<pubDate>Tue, 10 Jun 2008 02:21:43 +0000</pubDate>
		<dc:creator>Alonso Robles</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Internet Information Services]]></category>
		<category><![CDATA[Sharepoint Server]]></category>
		<category><![CDATA[Windows Sharepoint Services]]></category>
		<category><![CDATA[.NET Development]]></category>
		<category><![CDATA[asp.net 2.0]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[iis 7.0]]></category>
		<category><![CDATA[moss 2007]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[wss 3.0]]></category>

		<guid isPermaLink="false">http://blogs.importchaos.com/alonsorobles/?p=58</guid>
		<description><![CDATA[When developling for SharePoint, I find myself always turning on the call stack and disabiling the custom errors in my development environment. It really does help when trying to debug run-time problems. I know there a few posts out there &#8230; <a href="http://alonsorobles.com/2008/06/09/enabling-the-sharepoint-safe-mode-call-stack-disabling-custom-errors-and-enabling-compilation-debugging/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>When developling for SharePoint, I find myself always turning on the call stack and disabiling the custom errors in my development environment. It really does help when trying to debug run-time problems. I know there a few posts out there that describe how to do this, but I figured I would repost it as a reference for myself (which you are welcome to use).</p>
<p>Just remember that I do this in my development environment only. I don&#8217;t recommend changing the <em>web.config</em> files in any other environment.</p>
<p><strong>Enabling the Call Stack</strong></p>
<p>Set the value <em>CallStack<strong> </strong></em>attribute in the <em>SafeMode </em>element in the <em>web.config</em> file to <em>true</em>.</p>
<pre>&lt;?xml version="1.0" encoding="UTF-8" standalone="yes"?&gt;
 &lt;configuration&gt;
  ...
  &lt;SharePoint&gt;
   &lt;SafeMode MaxControls="200"
             CallStack="true"
             DirectFileDependencies="10"
             TotalFileDependencies="50"
             AllowPageLevelTrace="false"&gt;
    ...
   &lt;/SafeMode&gt;
   ...
 &lt;/SharePoint&gt;
 ...
&lt;/configuration&gt;</pre>
<p><strong>Disabling Custom Errors</strong></p>
<p>Set the value of the <em>mode</em> attribute in the <em>customErrors</em> element to <em>Off</em>.</p>
<pre>&lt;?xml version="1.0" encoding="UTF-8" standalone="yes"?&gt;
 &lt;configuration&gt;
  ...
  &lt;system.web&gt;
   ...
   &lt;customErrors mode="Off" /&gt;
   ...
  &lt;/system.web&gt;
 ...
&lt;/configuration&gt;</pre>
<p><strong>Enabiling Compilation Debugging</strong></p>
<p>Set the value of the <em>debug </em>attriute in the <em>compilation</em> element to <em>true</em>.</p>
<pre>&lt;?xml version="1.0" encoding="UTF-8" standalone="yes"?&gt;
 &lt;configuration&gt;
  ...
  &lt;system.web&gt;
   ...
   &lt;compilation debug="true"&gt;
    ...
   &lt;/compilation&gt;
   ...
  &lt;/system.web&gt;
 ...
&lt;/configuration&gt;</pre>
<p> <strong>Putting it all together</strong></p>
<pre>&lt;?xml version="1.0" encoding="UTF-8" standalone="yes"?&gt;
 &lt;configuration&gt;
  ...
  &lt;SharePoint&gt;
   &lt;SafeMode MaxControls="200"
             CallStack="true"
             DirectFileDependencies="10"
             TotalFileDependencies="50"
             AllowPageLevelTrace="false"&gt;
    ...
   &lt;/SafeMode&gt;
   ...
 &lt;/SharePoint&gt;
 &lt;system.web&gt;
   ...
   &lt;customErrors mode="Off" /&gt;
   ...
   &lt;compilation debug="true"&gt;
    ...
   &lt;/compilation&gt;
   ...
  &lt;/system.web&gt;
 ...
&lt;/configuration&gt;</pre>
]]></content:encoded>
			<wfw:commentRss>http://alonsorobles.com/2008/06/09/enabling-the-sharepoint-safe-mode-call-stack-disabling-custom-errors-and-enabling-compilation-debugging/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>SharePoint Ramp Up Webcasts for ASP.NET Developers</title>
		<link>http://alonsorobles.com/2008/05/20/sharepoint-ramp-up-webcasts-for-aspnet-developers/</link>
		<comments>http://alonsorobles.com/2008/05/20/sharepoint-ramp-up-webcasts-for-aspnet-developers/#comments</comments>
		<pubDate>Tue, 20 May 2008 17:53:05 +0000</pubDate>
		<dc:creator>Alonso Robles</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Windows Sharepoint Services]]></category>
		<category><![CDATA[asp.net 2.0]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[webcast]]></category>
		<category><![CDATA[wss 3.0]]></category>

		<guid isPermaLink="false">http://blogs.importchaos.com/alonsorobles/?p=39</guid>
		<description><![CDATA[I wish I would have seen this schedule earlier since the first webcast was today. Nevertheless, I will be trying to catch the others live (or on demand if I miss them). Even as an experienced WSS3/MOSS2007 developer, getting the chance &#8230; <a href="http://alonsorobles.com/2008/05/20/sharepoint-ramp-up-webcasts-for-aspnet-developers/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I wish I would have <a title="ASP.NET Developer Looking for a SharePoint Ramp-Up?" href="http://www.andrewconnell.com/blog/archive/2008/05/13/ASP.NET-Developer-Looking-for-a-SharePoint-RampUp.aspx">seen this schedule</a> earlier since the first webcast was today. Nevertheless, I will be trying to catch the others live (or on demand if I miss them). Even as an experienced WSS3/MOSS2007 developer, getting the chance to see a couple of MVPs (<a href="http://www.andrewconnell.com/blog">Andrew Connell</a> and <a href="http://www.thorprojects.com/">Rob Bogue</a>) introduce the basics is great review and a chance to check your skills.</p>
<table border="1" cellspacing="2" cellpadding="2">
<tbody>
<tr>
<td width="0" valign="top"><strong>Date (all times EDT)</strong></td>
<td width="0" valign="top"><strong>Topic &amp; Registration URL</strong></td>
<td width="0" valign="top"><strong>Presenter</strong></td>
</tr>
<tr>
<td width="0" valign="top">Tues, May 20 : 12-1p</td>
<td width="0" valign="top"><a href="http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032378826&amp;Culture=en-US">Web Parts</a></td>
<td width="0" valign="top"><a href="http://www.thorprojects.com/">Rob Bogue</a></td>
</tr>
<tr>
<td width="0" valign="top">Wed, May 21 : 12-1p</td>
<td width="0" valign="top"><a href="http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032378828&amp;Culture=en-US">Data Lists</a></td>
<td width="0" valign="top"><a href="http://www.thorprojects.com/">Rob Bogue</a></td>
</tr>
<tr>
<td width="0" valign="top">Tues, May 27 : 12-1p</td>
<td width="0" valign="top"><a href="http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032378831&amp;Culture=en-US">Silverlight</a></td>
<td width="0" valign="top"><a href="http://www.andrewconnell.com/blog">Andrew Connell</a></td>
</tr>
<tr>
<td width="0" valign="top">Wed, May 28 : 12-1p</td>
<td width="0" valign="top"><a href="http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032378833&amp;Culture=en-US">Event Handlers</a></td>
<td width="0" valign="top"><a href="http://www.andrewconnell.com/blog">Andrew Connell</a></td>
</tr>
<tr>
<td width="0" valign="top">Tues, June 3 : 12-1p</td>
<td width="0" valign="top"><a href="http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032378835&amp;Culture=en-US">Site Branding</a></td>
<td width="0" valign="top"><a href="http://www.andrewconnell.com/blog">Andrew Connell</a></td>
</tr>
<tr>
<td width="0" valign="top">Wed, June 4 : 12-1p</td>
<td width="0" valign="top"><a href="http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032378839&amp;Culture=en-US">Workflow</a></td>
<td width="0" valign="top"><a href="http://www.thorprojects.com/">Rob Bogue</a></td>
</tr>
<tr>
<td width="0" valign="top">Tues, June 10 : 12-1p</td>
<td width="0" valign="top"><a href="http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032378841&amp;Culture=en-US">Web Services</a></td>
<td width="0" valign="top"><a href="http://www.andrewconnell.com/blog">Andrew Connell</a></td>
</tr>
<tr>
<td width="0" valign="top">Wed, June 11 : 12-1p</td>
<td width="0" valign="top"><a href="http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032378843&amp;Culture=en-US">Page Navigation</a></td>
<td width="0" valign="top"><a href="http://www.andrewconnell.com/blog">Andrew Connell</a></td>
</tr>
<tr>
<td width="0" valign="top">Tues, June 17 : 12-1p</td>
<td width="0" valign="top"><a href="http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032378845&amp;Culture=en-US">User Management</a></td>
<td width="0" valign="top"><a href="http://www.thorprojects.com/">Rob Bogue</a></td>
</tr>
<tr>
<td width="0" valign="top">Wed, June 18 : 12-1p</td>
<td width="0" valign="top"><a href="http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032378824&amp;Culture=en-US">Content Types</a></td>
<td width="0" valign="top"><a href="http://www.thorprojects.com/">Rob Bogue</a></td>
</tr>
</tbody>
</table>
<p>If you have any interest in SharePoint development, then you don&#8217;t want to miss these webcasts.</p>
]]></content:encoded>
			<wfw:commentRss>http://alonsorobles.com/2008/05/20/sharepoint-ramp-up-webcasts-for-aspnet-developers/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

