<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" version="2.0">

<channel>
	<title>PrimeDigit - A Design Blog by Will Shaver</title>
	
	<link>http://www.primedigit.com</link>
	<description>I enjoy pressing my semicolon key.</description>
	<lastBuildDate>Fri, 08 Jun 2012 17:15:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/Primedigit" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="primedigit" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Javscript Linter – Why do you hate new?</title>
		<link>http://www.primedigit.com/2012/06/08/javscript-linter-why-do-you-hate-new/</link>
		<comments>http://www.primedigit.com/2012/06/08/javscript-linter-why-do-you-hate-new/#comments</comments>
		<pubDate>Fri, 08 Jun 2012 17:14:32 +0000</pubDate>
		<dc:creator>Will</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.primedigit.com/?p=124</guid>
		<description><![CDATA[I&#8217;m trying backbone and playing with the model concept &#8211; something I&#8217;ve implemented without a framework in the past. I&#8217;m also trying sublime text with the javascript linter turned on, and have noticed it hates &#8220;new&#8221; quite a bit. var &#8230; <a href="http://www.primedigit.com/2012/06/08/javscript-linter-why-do-you-hate-new/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m trying backbone and playing with the model concept &#8211; something I&#8217;ve implemented without a framework in the past. I&#8217;m also trying sublime text with the javascript linter turned on, and have noticed it hates &#8220;new&#8221; quite a bit.</p>
<pre><code>var StandardMethod = Backbone.Model.extend({
    initialize : function(){
        console.log('init');
    }
});

var LintOk = Backbone.Model.extend((function(){
    this.initialize = function(){
        console.log('init');
    };
    return this;
})());

var LintHates = Backbone.Model.extend(new function(){
    this.initialize = function(){
        console.log('init');
    };
});
var sm = new StandardMethod();
var lo = new LintOk();
var lh = new LintHates();​</code></pre>
<p>The LintOk method requires changes in 3 different places in order to create a closure-compatible function. So if I want some closure variables like:</p>
<pre><code>var NowWithClosures = Backbone.Model.extend(new function(){
	var x = 1;
	this.initialize = function(){
		console.log('init');
	};
	this.AddOneToX = function(){
		x++;
	};
	this.getX = function() {
		return x;
	};
});

var nwc = new NowWithClosures();
nwc.AddOneToX();
console.log(nwc.getX());</code></pre>
<p>I have to use this very verbose method in order to be lint-approved? Is there something I&#8217;m missing here? What&#8217;s the reasoning for this?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.primedigit.com/2012/06/08/javscript-linter-why-do-you-hate-new/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dreaming of the Paperless Office</title>
		<link>http://www.primedigit.com/2010/06/29/dreaming-of-the-paperless-office/</link>
		<comments>http://www.primedigit.com/2010/06/29/dreaming-of-the-paperless-office/#comments</comments>
		<pubDate>Tue, 29 Jun 2010 16:33:50 +0000</pubDate>
		<dc:creator>Will</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.primedigit.com/?p=116</guid>
		<description><![CDATA[There&#8217;s this scene in the movie documentary Office Space where the crew shows just how much they love printers. Those of us who are blessed with working in offices have all been there. Only the top half of the document &#8230; <a href="http://www.primedigit.com/2010/06/29/dreaming-of-the-paperless-office/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>There&#8217;s this scene in the <strike>movie</strike> documentary <a href="http://www.imdb.com/title/tt0151804/">Office Space</a> where the crew shows just how much they love printers. </p>
<p><object width="640" height="385"><param name="movie" value="http://www.youtube.com/v/wzGWvZAd228&#038;hl=en_US&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/wzGWvZAd228&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="385"></embed></object></p>
<p>Those of us who are blessed with working in offices have all been there. Only the top half of the document prints, the scanner is blurry, or the fax machine shreds our original. As a software developer forced to support printing on a variety of systems this can provide hours of endless headache. </p>
<p>I spend a lot of my time building and supporting an internal web app. For simplicity we only support IE and we do most of our printing through a print specific css. Most of the time this works great, but not today.</p>
<p>Despite my best efforts some people, and by &#8220;some people&#8221; I mean the accounting department, still feel the need to print things every day. So a user calls to tell me that a report which printed just fine yesterday isn&#8217;t printing correctly. Specifically the first digit in the column is being put in the previous column. What?? User error? I&#8217;ve gotta see this. </p>
<p>I open the report in question: Works<br />
Print Preview: Check.<br />
Look at it on the user&#8217;s computer: Fine here too.<br />
Print preview: Again no problem.<br />
Print it out:</p>
<p><img src="http://www.primedigit.com/wp-content/uploads/2010/06/print_column.jpg" alt="" title="print_column" width="364" height="410" class="alignnone size-full wp-image-117" /></p>
<p>What the heck is going on here??! As you can see, the first digit in column B has wandered over to column A. Perhaps they were serving better drinks. I might need one!</p>
<p>Printing the same report from a different users computer: same problem. The same report to a different brand of printer: FIXED.</p>
<p>The solution: don&#8217;t print that report to the HP LaserJet 4350dtn printer <strong>today</strong>. Yesterday wasn&#8217;t an issue. Tomorrow probably will be fine too. But today just go ahead and use the other printer. </p>
<p>I need a baseball bat.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.primedigit.com/2010/06/29/dreaming-of-the-paperless-office/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Failed to enable constraints</title>
		<link>http://www.primedigit.com/2010/06/04/failed-to-enable-constraints/</link>
		<comments>http://www.primedigit.com/2010/06/04/failed-to-enable-constraints/#comments</comments>
		<pubDate>Fri, 04 Jun 2010 16:43:11 +0000</pubDate>
		<dc:creator>Will</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.primedigit.com/?p=111</guid>
		<description><![CDATA[Was working on an older site connected via xsd/data sets to a legacy database. It started giving us this error: Failed to enable constraints. One or more rows contain values violating non-null, unique, or foreign-key constraints. Description: An unhandled exception &#8230; <a href="http://www.primedigit.com/2010/06/04/failed-to-enable-constraints/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Was working on an older site connected via xsd/data sets to a legacy database. It started giving us this error:</p>
<blockquote><p>Failed to enable constraints. One or more rows contain values violating non-null, unique, or foreign-key constraints.<br />
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. </p>
<p>Exception Details: System.Data.ConstraintException: Failed to enable constraints. One or more rows contain values violating non-null, unique, or foreign-key constraints.</p></blockquote>
<p>That&#8217;s basically a big fat lie, as the database wouldn&#8217;t be suddenly violating key constraints. Nonsense. After some digging I determined that this error should actually read:</p>
<p>&#8220;The schema in the database has changed, but the xsd hasn&#8217;t been updated. Update your xsd with appropriate length on variable length columns.&#8221;</p>
<p>There, hope that helps!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.primedigit.com/2010/06/04/failed-to-enable-constraints/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NAnt on Windows 7 x64 with Visual Studio 2010</title>
		<link>http://www.primedigit.com/2010/04/20/nant-on-windows-7-x64-with-visual-studio-2010/</link>
		<comments>http://www.primedigit.com/2010/04/20/nant-on-windows-7-x64-with-visual-studio-2010/#comments</comments>
		<pubDate>Tue, 20 Apr 2010 18:11:03 +0000</pubDate>
		<dc:creator>Will</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.primedigit.com/?p=102</guid>
		<description><![CDATA[Trying to build NHibernate from a fresh install of VS 2010 and NAnt beta .90 caused me all sorts of headaches. I couldn&#8217;t get NAnt to target .Net 3.5. Here&#8217;s the error: check-framework-version: [echo] Running with net-2.0 BUILD FAILED C:\Projects\OpenSource\NHibernate\default.build(117,5): &#8230; <a href="http://www.primedigit.com/2010/04/20/nant-on-windows-7-x64-with-visual-studio-2010/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Trying to build NHibernate from a fresh install of VS 2010 and NAnt beta .90 caused me all sorts of headaches. I couldn&#8217;t get NAnt to target .Net 3.5. Here&#8217;s the error:</p>
<blockquote><p>
check-framework-version:</p>
<p>     [echo] Running with net-2.0</p>
<p>BUILD FAILED</p>
<p>C:\Projects\OpenSource\NHibernate\default.build(117,5):<br />
ERROR: NHibernate requires .Net 3.5.
</p></blockquote>
<p>Turns out the NAnt config is pointing at the wrong registry key. Perhaps visual stuido 2010 release is different than previous beta versions. A simple update to the registry key for the net-3.5 framework target fixed it. Previous version:</p>
<p><code><br />
&lt;readregistry<br />
property="sdkInstallRoot"<br />
key="SOFTWARE\Microsoft\Microsoft SDKs\Windows\v7.0\WinSDK\InstallationFolder"<br />
hive="LocalMachine"<br />
failonerror="false" /><br />
</code></p>
<p>Corrected:<br />
<code><br />
&lt;readregistry<br />
property="sdkInstallRoot"<br />
key="SOFTWARE\Microsoft\Microsoft SDKs\Windows\v7.0A\InstallationFolder"<br />
hive="LocalMachine"<br />
failonerror="false" /></code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.primedigit.com/2010/04/20/nant-on-windows-7-x64-with-visual-studio-2010/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>NewEgg Fail</title>
		<link>http://www.primedigit.com/2009/10/29/newegg-fail/</link>
		<comments>http://www.primedigit.com/2009/10/29/newegg-fail/#comments</comments>
		<pubDate>Thu, 29 Oct 2009 20:10:23 +0000</pubDate>
		<dc:creator>Will</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.primedigit.com/?p=98</guid>
		<description><![CDATA[I&#8217;d like to relay a story of what not to do. Perhaps with some humor along the way. We&#8217;ve had trouble with newegg.com&#8216;s website for quite some time at our company. The most recent time I was unable to order, &#8230; <a href="http://www.primedigit.com/2009/10/29/newegg-fail/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;d like to relay a story of what not to do. Perhaps with some humor along the way. We&#8217;ve had trouble with <a href="http://newegg.com">newegg.com</a>&#8216;s website for quite some time at our company. The most recent time I was unable to order, I decided to let newegg know that I was spending my money over at amazon. So I wrote them a quick note via the their <a href="http://www.newegg.com/HelpInfo/OverView.aspx#ContactUsTab">web service interface</a>. Here&#8217;s the note I wrote:</p>
<blockquote><p>I love giving money to newegg, but today I can&#8217;t. Seems that some combination of newegg&#8217;s shopping cart code and our corporate firewall prevent me from updating my cart. I can totally delete my cookies and start over, adding one item at a time to the cart. But today I wanted to order two of the same item, so I went to amazon. I&#8217;ll pay a little more, but at least then I can order them together. </p>
<p>I&#8217;ve tried the hosts file trick mentioned in your faq. I&#8217;ve tried under Chrome, Firefox, and IE8. I&#8217;ve tried it in a house, I&#8217;ve tried it with a mouse. I&#8217;ve tried it on a different day, I&#8217;ve tried it in a different way. I&#8217;ve tried it from a different box, I&#8217;ve even tried it while juggling socks. </p>
<p>Any &#8216;Update Cart&#8217; operations timeout. After attempting to perform one I have to clear my cookies and start over. </p>
<p>Level of technical experience: I help build the Internet. </p>
<p>http://secure.newegg.com/test.aspx</p>
<p>E3SSL05 (172.16.21.145) </p>
<p>http://www.newegg.com/test.aspx</p>
<p>E3Web001</p></blockquote>
<p>After the standard &#8220;we did get your email, the internet really still works&#8221; email message, I got a wonderful reply from one Lillian Hu (her real name, I&#8217;m sure) as follows:</p>
<blockquote><p>Dear Will,</p>
<p>Thank you for contacting Newegg.</p>
<p>I truly apologize for the unfavorable situation. Please kindly note that we are not technically certified; therefore we can not provide more information or suggestions about this problems. We do apologize if this causes you any inconvenience. Possibly this is a problem at the end of the item stock and we do not have available quantity for purchase. Again, I sincerely apologize for any inconvenience.</p>
<p>If you have any further questions or concerns, please visit our FAQs page. If you still need assistance, please feel free to email me directly and I will be happy to assist you.</p>
<p>Thank you,</p>
<p>Lillian Hu</p></blockquote>
<p>So tell me dear readers &#8211; how does that relate to what I wrote? Even a little bit? </p>
<p>So I wrote back, trying to pass this up the ladder to someone with a little more technical training.</p>
<blockquote><p>Somehow I think my humorous and loving note was lost on you. I gave my money to amazon.com instead.</p></blockquote>
<p>Lillian replied at one in the morning:</p>
<blockquote><p>Dear Will,</p>
<p>Thank you for contacting Newegg.</p>
<p>I do apologize for any inconvenience. This situation is not normal. I would like to further assist this issue on your behalf. Please reply to this email with the screen shot of the problem you met with purchase, I will send report for you.</p>
<p>If you have any further questions or concerns, please visit our FAQs page. If you still need assistance, please feel free to email me directly and I will be happy to assist you.</p>
<p>Thank you,</p>
<p>Lillian Hu</p></blockquote>
<p>Fantastic. I was hoping she would send report for me. Here&#8217;s my screenshot. Enjoy.</p>
<p><a href="http://www.primedigit.com/wp-content/uploads/2009/10/neweggfail.jpg"><img src="http://www.primedigit.com/wp-content/uploads/2009/10/neweggfail-300x277.jpg" alt="neweggfail" title="neweggfail" width="300" height="277" class="alignnone size-medium wp-image-99" /></a></p>
<p>We&#8217;ll see if they manage to do something useful for me. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.primedigit.com/2009/10/29/newegg-fail/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Images of the Recently Deceased</title>
		<link>http://www.primedigit.com/2009/07/20/images-of-the-dead/</link>
		<comments>http://www.primedigit.com/2009/07/20/images-of-the-dead/#comments</comments>
		<pubDate>Tue, 21 Jul 2009 00:36:28 +0000</pubDate>
		<dc:creator>Will</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.primedigit.com/2009/07/20/96/</guid>
		<description><![CDATA[So sad&#8230;]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.primedigit.com/wp-content/uploads/2009/07/deadimages1.png"><img src="http://www.primedigit.com/wp-content/uploads/2009/07/deadimages1-300x223.png" alt="Recently Deceased" title="Recently Deceased" width="300" height="223" class="alignnone size-medium wp-image-94" /></a></p>
<p>So sad&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.primedigit.com/2009/07/20/images-of-the-dead/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Exchange Server Experience?</title>
		<link>http://www.primedigit.com/2009/07/10/exchange-server-experience/</link>
		<comments>http://www.primedigit.com/2009/07/10/exchange-server-experience/#comments</comments>
		<pubDate>Fri, 10 Jul 2009 20:15:05 +0000</pubDate>
		<dc:creator>Will</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.primedigit.com/?p=90</guid>
		<description><![CDATA[Anyone have experience pulling down email and parsing it from an exchange 2003 server? Ideally c# code, but other code would work for reviewing concepts&#8230; For the internal web-app that I&#8217;m building I want to be able to send an &#8230; <a href="http://www.primedigit.com/2009/07/10/exchange-server-experience/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Anyone have experience pulling down email and parsing it from an exchange 2003 server? Ideally c# code, but other code would work for reviewing concepts&#8230; </p>
<p>For the internal web-app that I&#8217;m building I want to be able to send an email with an attachment to a specialized username+234829529308@&#8230; sequence and have the attachment appear on certain webpages. This way instead of having to navigate to a specific file or folder users can upload documents to my server by emailing them&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.primedigit.com/2009/07/10/exchange-server-experience/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bing Fail</title>
		<link>http://www.primedigit.com/2009/06/15/bing-fail/</link>
		<comments>http://www.primedigit.com/2009/06/15/bing-fail/#comments</comments>
		<pubDate>Mon, 15 Jun 2009 19:36:28 +0000</pubDate>
		<dc:creator>Will</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.primedigit.com/?p=82</guid>
		<description><![CDATA[Here&#8217;s a quick and egosurfing comparison of google and bing. Doing a non-quoted search for: will shaver Google: Me Me Me Me, and others Not Me Me Me Not Me Not Me Bing: Not Me Not Me Not Me Not &#8230; <a href="http://www.primedigit.com/2009/06/15/bing-fail/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a quick and <a href="http://en.wikipedia.org/wiki/Egosurfing">egosurfing</a> comparison of google and bing. Doing a non-quoted search for: will shaver</p>
<p><a href="http://www.google.com/search?sourceid=chrome&#038;ie=UTF-8&#038;q=will+shaver">Google</a>: </p>
<ul>
<li>Me</li>
<li>Me</li>
<li>Me</li>
<li>Me, and others</li>
<li>Not Me</li>
<li>Me</li>
<li>Me</li>
<li>Not Me</li>
<li>Not Me</li>
</ul>
<p><a href="http://www.bing.com/search?q=will+shaver&#038;go=&#038;form=QBLH">Bing</a>:</p>
<ul>
<li>Not Me</li>
<li>Not Me</li>
<li>Not Me</li>
<li>Not Me</li>
<li>Not Me</li>
<li>Not Me</li>
<li>Not Me</li>
<li>Not Me</li>
<li>Not Me</li>
<li>Not Me</li>
</ul>
<p>Hey, it isn&#8217;t *my* fault that &#8220;Will&#8221; is a common english word. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.primedigit.com/2009/06/15/bing-fail/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Snappy Conversationalist</title>
		<link>http://www.primedigit.com/2009/04/21/snappy-conversationalist/</link>
		<comments>http://www.primedigit.com/2009/04/21/snappy-conversationalist/#comments</comments>
		<pubDate>Tue, 21 Apr 2009 18:20:49 +0000</pubDate>
		<dc:creator>Will</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.primedigit.com/?p=79</guid>
		<description><![CDATA[Boring conversation anyway&#8230;.]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.primedigit.com/wp-content/uploads/2009/04/conversation.png" alt="How Exciting" title="How Exciting" width="768" height="313" class="alignnone size-full wp-image-80" /><br />
<br />
Boring conversation anyway&#8230;.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.primedigit.com/2009/04/21/snappy-conversationalist/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Debugging with MVC Source</title>
		<link>http://www.primedigit.com/2009/02/24/debugging-with-mvc-source/</link>
		<comments>http://www.primedigit.com/2009/02/24/debugging-with-mvc-source/#comments</comments>
		<pubDate>Tue, 24 Feb 2009 19:16:13 +0000</pubDate>
		<dc:creator>Will</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.primedigit.com/?p=77</guid>
		<description><![CDATA[If you&#8217;re trying to debug by building the MVC source and getting something like this error: The type 'System.Web.Mvc.ViewMasterPage' is ambiguous: it could come from assembly 'C:\WINDOWS\assembly\GAC_MSIL\System.Web.Mvc\1.0.0.0__31bf3856ad364e35\System.Web.Mvc.dll' or from assembly 'C:\Projects\mvccontrib\trunk\src\Samples\MvcContrib.Samples.UI\bin\System.Web.Mvc.DLL'. Please specify the assembly explicitly in the type name. &#8230; <a href="http://www.primedigit.com/2009/02/24/debugging-with-mvc-source/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re trying to debug by building the MVC source and getting something like this error:</p>
<blockquote><p>
<code>The type 'System.Web.Mvc.ViewMasterPage' is ambiguous: it could come from assembly 'C:\WINDOWS\assembly\GAC_MSIL\System.Web.Mvc\1.0.0.0__31bf3856ad364e35\System.Web.Mvc.dll' or from assembly 'C:\Projects\mvccontrib\trunk\src\Samples\MvcContrib.Samples.UI\bin\System.Web.Mvc.DLL'. Please specify the assembly explicitly in the type name.</code></p></blockquote>
<p>Then <a href="http://blog.codeville.net/2009/02/03/using-the-aspnet-mvc-source-code-to-debug-your-app/">Steve will help you solve the ambiguous reference problem.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.primedigit.com/2009/02/24/debugging-with-mvc-source/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
