<?xml version="1.0" encoding="utf-8"?>
			
			<rss version="2.0" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:cc="http://web.resource.org/cc/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd">

			<channel>
			<title>Jon Hartmann - ASP.NET</title>
			<link>http://www.jonhartmann.com/index.cfm</link>
			<description>Technical blog of West Virginia web developer Jon Hartmann, covering ColdFusion, Asp.NET, Javascript, User Interface Design, and current website trends.</description>
			<language>en-us</language>
			<pubDate>Wed, 08 Sep 2010 04:15:40 -0500</pubDate>
			<lastBuildDate>Thu, 29 Apr 2010 13:11:00 -0500</lastBuildDate>
			<generator>BlogCFC</generator>
			<docs>http://blogs.law.harvard.edu/tech/rss</docs>
			<managingEditor>jon.hartmann@gmail.com</managingEditor>
			<webMaster>jon.hartmann@gmail.com</webMaster>
			<itunes:subtitle></itunes:subtitle>
			<itunes:summary></itunes:summary>
			<itunes:category text="Technology" />
			<itunes:category text="Technology">
				<itunes:category text="Podcasting" />
			</itunes:category>
			<itunes:category text="Technology">
				<itunes:category text="Tech News" />
			</itunes:category>
			<itunes:keywords></itunes:keywords>
			<itunes:author></itunes:author>
			<itunes:owner>
				<itunes:email>jon.hartmann@gmail.com</itunes:email>
				<itunes:name></itunes:name>
			</itunes:owner>
			<itunes:image href="" />
			<image>
				<url></url>
				<title>Jon Hartmann</title>
				<link>http://www.jonhartmann.com/index.cfm</link>
			</image>
			<itunes:explicit></itunes:explicit>
			
			<item>
				<title>When in Doubt Clear Your Bin</title>
				<link>http://www.jonhartmann.com/index.cfm/2010/4/29/When-in-Doubt-Clear-Your-Bin</link>
				<description>
				
				&lt;img src=&quot;/images/bin.PNG&quot; title=&quot;A Bin&quot; class=&quot;floatTL&quot; /&gt;This is a reminder to myself, and anyone facing down a weird error message when trying to build their ASP.NET application: you need to try clearing out your Bin folder and rebuilding it. I&apos;ve &apos;fixed&apos; probably a dozen build problems so far just by clearing out my Bin and rebuilding the application. To clear your Bin folder:

&lt;ol&gt;
&lt;li&gt;Find your project file in Visual Studio and left click it.&lt;/li&gt;
&lt;li&gt;Go up to the icons in your Solution Explorer and click &apos;Show All Files&apos;.&lt;/li&gt;
&lt;li&gt;Find your Bin folder in your project, and right click it.&lt;/li&gt;
&lt;li&gt;Click &apos;Open File in Windows Explorer&apos;.&lt;/li&gt;
&lt;li&gt;Select everything in the folder (Ctrl + A) and delete it.&lt;/li&gt;
&lt;li&gt;Rebuild your application.&lt;/li&gt;
&lt;/ol&gt;

I&apos;ve got no idea &lt;em&gt;why&lt;/em&gt; there were errors with my applications, or why this fixed them, but its always a good first line of defense. If you&apos;ve got an error message you can&apos;t figure out, clean out your bin. 
				</description>
				
				<category>Mystery Error Message</category>				
				
				<category>ASP.NET</category>				
				
				<pubDate>Thu, 29 Apr 2010 13:11:00 -0500</pubDate>
				<guid>http://www.jonhartmann.com/index.cfm/2010/4/29/When-in-Doubt-Clear-Your-Bin</guid>
				
			</item>
			
			<item>
				<title>ASP.NET Error Message: Invalid postback or callback argument</title>
				<link>http://www.jonhartmann.com/index.cfm/2010/1/18/ASPNET-Error-Message-Invalid-postback-or-callback-argument</link>
				<description>
				
				If you&apos;re trying to create a post-back from Javascript in ASP.NET, you might have come across the following error:

&lt;blockquote&gt;
Invalid postback or callback argument. Event validation is enabled using in configuration or in a page. For security purposes, this feature verifies that arguments to postback or callback events originate from the server control that originally rendered them. If the data is valid and expected, use the ClientScriptManager.RegisterForEventValidation method in order to register the postback or callback data for validation.
&lt;/blockquote&gt;

This message is caused because ASP is attempting to validate that a given post-back that was initiated from Javascript is really supposed to be happening; basically, it is an attempt to try to prevent cross-site scripting from issuing post-backs. You can do as the message says and register the callback, you can edit your web.config file, or you can do what I do, and add the following line to your Page directive in your .aspx page like so:

&lt;code&gt;&lt;%@ Page EnableEventValidation=&quot;false&quot; ... %&gt;&lt;/code&gt;

&lt;div class=&quot;warning&quot;&gt;
Be aware that by setting EnableEventValidation to false, you&apos;re opening a hole in your security. I&apos;m using this in a situation where the risk has been minimized, but if you&apos;re including external scripts, you might want to actually go through the trouble of registering the event.
&lt;/div&gt; 
				</description>
				
				<category>Javascript</category>				
				
				<category>Mystery Error Message</category>				
				
				<category>ASP.NET</category>				
				
				<pubDate>Mon, 18 Jan 2010 10:35:00 -0500</pubDate>
				<guid>http://www.jonhartmann.com/index.cfm/2010/1/18/ASPNET-Error-Message-Invalid-postback-or-callback-argument</guid>
				
			</item>
			
			<item>
				<title>ASP.NET First Thoughts</title>
				<link>http://www.jonhartmann.com/index.cfm/2009/12/17/ASPNET-First-Thoughts</link>
				<description>
				
				I&apos;d announced a few weeks back that I was taking a role as a .NET desktop developer, but I&apos;ve found that I&apos;m actually going to be doing a good bit of ASP.NET web development as well (w00t!). As such, I&apos;ve shifted gears a bit and dropped my studies of WPF for ASP.NET, and although I&apos;m certainly not an expert yet, I thought I&apos;d share my first thoughts.  [More]
				</description>
				
				<category>ASP.NET</category>				
				
				<pubDate>Thu, 17 Dec 2009 08:45:00 -0500</pubDate>
				<guid>http://www.jonhartmann.com/index.cfm/2009/12/17/ASPNET-First-Thoughts</guid>
				
			</item>
			</channel></rss>