<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://weblogs.asp.net/utility/FeedStylesheets/atom.xsl" media="screen"?><feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en"><title type="html">Alex Campbell&amp;#39;s Technology Weblog</title><subtitle type="html" /><id>http://weblogs.asp.net/acampbell/atom.aspx</id><link rel="alternate" type="text/html" href="http://weblogs.asp.net/acampbell/default.aspx" /><link rel="self" type="application/atom+xml" href="http://weblogs.asp.net/acampbell/atom.aspx" /><generator uri="http://communityserver.org" version="3.0.20510.895">Community Server</generator><updated>2008-03-02T04:24:00Z</updated><entry><title>Very impressed with the user experience at Tumblr</title><link rel="alternate" type="text/html" href="http://weblogs.asp.net/acampbell/archive/2009/07/23/very-impressed-with-the-user-experience-at-tumblr.aspx" /><id>http://weblogs.asp.net/acampbell/archive/2009/07/23/very-impressed-with-the-user-experience-at-tumblr.aspx</id><published>2009-07-23T06:49:00Z</published><updated>2009-07-23T06:49:00Z</updated><content type="html">After using many different blog platforms over the year, I've finally found one that I actually like: &lt;a href="http://www.tumblr.com"&gt;Tumblr&lt;/a&gt;. It puts Wordpress to shame, and makes Community Server look like a bloated monster.
&lt;br /&gt;&lt;br /&gt;
Check out my Tumblr blog here: &lt;a href="http://www.alexjcampbell.com"&gt;Alex Campbell&lt;/a&gt;.
&lt;br /&gt;&lt;br /&gt;
One of the things that I like so much is that Tumblr combines blogging with &lt;a href="http://twitter.com/alexjcampbell"&gt;Twitter&lt;/a&gt;-like functionality such as Following. So every time you log into Tumblr you can browse through all of the cool Tumblr blogs you're following.&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7153236" width="1" height="1"&gt;</content><author><name>alexcampbell</name><uri>http://weblogs.asp.net/members/alexcampbell.aspx</uri></author></entry><entry><title>Chop or Champion - Sport opinion website using ASP.Net MVC, ADO.Net Data Entities, and JQuery AJAX</title><link rel="alternate" type="text/html" href="http://weblogs.asp.net/acampbell/archive/2009/05/31/chop-or-champion-sport-opinion-website-using-asp-net-mvc-ado-net-data-entities-and-jquery-ajax.aspx" /><id>http://weblogs.asp.net/acampbell/archive/2009/05/31/chop-or-champion-sport-opinion-website-using-asp-net-mvc-ado-net-data-entities-and-jquery-ajax.aspx</id><published>2009-05-31T10:06:00Z</published><updated>2009-05-31T10:06:00Z</updated><content type="html">&lt;P mce_keep="true"&gt;I've just launched my first website using two very interesting new Microsoft technologies - ASP.Net MVC and ADO.Net Data Entities. It's called &lt;A href="http://www.choporchampion.com/" mce_href="http://www.choporchampion.com"&gt;Chop or Champion&lt;/A&gt;.&lt;/P&gt;
&lt;P mce_keep="true"&gt;Since I no longer do software development on a day to day basis, it's not easy&amp;nbsp;for me to get back into the swing of it. This project has been a lot easier, since I absolutely love MVC. I always found Webforms a bit clunky and&amp;nbsp;too loosely coupled. Codebehinds suck. For me, MVC makes development fun for the first time in years.&lt;/P&gt;
&lt;P mce_keep="true"&gt;When you combine MVC with the ADO.Net Data Entity framework, you get a very efficient development environment. My only complaint is that adding/removing columns and then refreshing the data model seems to break everything. But this is easily fixed by deleting and recreating the data model in Visual Studio.&lt;/P&gt;
&lt;P mce_keep="true"&gt;Some parts of the site have a pretty complex data model. I had never used LINQ before when I started this project, so there was a pretty steep learning curve. It took a while to figure out how to do things like nested subqueries and complex joins, sorting by subqueries etc. I nearly resorted to using Views a few times when I couldn't figure out how to do these things, but in the end I was able to get the LINQ right. So there is absolutely no raw SQL in the project at all.&lt;/P&gt;
&lt;P mce_keep="true"&gt;Overall, I would highly recommend this as the model for future ASP.Net web development.&lt;/P&gt;&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7104066" width="1" height="1"&gt;</content><author><name>alexcampbell</name><uri>http://weblogs.asp.net/members/alexcampbell.aspx</uri></author><category term="ASP.NET" scheme="http://weblogs.asp.net/acampbell/archive/tags/ASP.NET/default.aspx" /><category term="ajax" scheme="http://weblogs.asp.net/acampbell/archive/tags/ajax/default.aspx" /><category term="Data Entities" scheme="http://weblogs.asp.net/acampbell/archive/tags/Data+Entities/default.aspx" /><category term="MVC" scheme="http://weblogs.asp.net/acampbell/archive/tags/MVC/default.aspx" /></entry><entry><title>LinkButtons in UpdatePanel cause full postback unless you give them IDs</title><link rel="alternate" type="text/html" href="http://weblogs.asp.net/acampbell/archive/2008/03/08/linkbuttons-in-updatepanel-cause-full-postback-unless-you-give-them-ids.aspx" /><id>http://weblogs.asp.net/acampbell/archive/2008/03/08/linkbuttons-in-updatepanel-cause-full-postback-unless-you-give-them-ids.aspx</id><published>2008-03-09T01:25:00Z</published><updated>2008-03-09T01:25:00Z</updated><content type="html">&lt;P mce_keep="true"&gt;After tearing my hair out for half an hour, I have just figured out the painfully simple solution to a frustrating problem with UpdatePanels,Repeaters and LinkButtons.&lt;/P&gt;
&lt;P mce_keep="true"&gt;The scenario: you have a Repeater in an UpdatePanel with LinkButtons in each RepeaterItem.&amp;nbsp; The LinkButtons fire Repeater.ItemCommand.&amp;nbsp; The problem is that every time you click on the LinkButton the page does a full postback - defeating the purpose of the UpdatePanel.&lt;/P&gt;
&lt;P mce_keep="true"&gt;The solution: put IDs on your LinkButtons.&amp;nbsp; All of a sudden your LinkButtons are firing nice async partial-page postbacks.&lt;/P&gt;&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=5940021" width="1" height="1"&gt;</content><author><name>alexcampbell</name><uri>http://weblogs.asp.net/members/alexcampbell.aspx</uri></author><category term="ASP.NET" scheme="http://weblogs.asp.net/acampbell/archive/tags/ASP.NET/default.aspx" /><category term="ajax" scheme="http://weblogs.asp.net/acampbell/archive/tags/ajax/default.aspx" /></entry><entry><title>Facebook says getfirefox.com</title><link rel="alternate" type="text/html" href="http://weblogs.asp.net/acampbell/archive/2008/03/02/facebook-says-getfirefox-com.aspx" /><id>http://weblogs.asp.net/acampbell/archive/2008/03/02/facebook-says-getfirefox-com.aspx</id><published>2008-03-02T09:24:00Z</published><updated>2008-03-02T09:24:00Z</updated><content type="html">&lt;P&gt;I was just checking out how something works in Facebook's IE7 stylesheet, and found the first few lines amusing:&lt;/P&gt;
&lt;P&gt;/*&amp;nbsp; ------------------------------------------------------------------------&lt;BR&gt;&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Facebook | IE7/PC Hacks | getfirefox.com&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ------------------------------------------------------------------------&amp;nbsp; */&lt;/P&gt;&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=5900641" width="1" height="1"&gt;</content><author><name>alexcampbell</name><uri>http://weblogs.asp.net/members/alexcampbell.aspx</uri></author></entry></feed>