<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-10243499</id><updated>2011-07-28T20:34:53.864+10:00</updated><title type='text'>Bean's Blog</title><subtitle type='html'>(Hopefully) useful comments about web developement - mainly ASP.NET, AJAX, Javascript and HTML.</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://beanland.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/10243499/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://beanland.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Hunter</name><uri>http://www.blogger.com/profile/12751305187378249697</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>7</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-10243499.post-3631069232172526421</id><published>2007-03-03T22:03:00.000+11:00</published><updated>2007-03-03T22:37:36.814+11:00</updated><title type='text'>ListBox tricky to set in a DataGrid/GridView</title><content type='html'>&lt;span style="font-family:arial;"&gt;&lt;span style="font-size:85%;"&gt;Listboxes are very tricky to set selected items in grid - there is no real nice way to do it. It would have been great if Microsoft included a property that accepts an array or comma separated values - or anything! But they only allow each item in the list to be selected individually. The way to do this in a grid is a bit messy, but it is fairly simple to implement. When a row is created (as per the event), select the items of the listbox as per the datagrid source data:&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;font-size:85%;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;font-size:85%;"&gt;&lt;strong&gt;HTML code:&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;font-size:85%;"&gt;&amp;lt;asp:listbox id="listBox" DataSource="&amp;lt;%# dtCase_Type %&amp;gt;" runat="server" selectionmode="Multiple" datasource="" datavaluefield="Code" datatextfield="Description"&gt;&lt;/span&gt;&lt;span style="font-family:courier new;"&gt;&lt;asp:listbox id="listBox" datasource=""&gt;&lt;sp:listbox id="lstCase_Type" datasource=""&gt;&lt;asp:listbox id="lstCase_Type" runat="server" selectionmode="Multiple" datasource="%# dtCase_Type %" datavaluefield="Code" datatextfield="Description"&gt;&lt;/span&gt;&lt;/asp:listbox&gt;&lt;/sp:listbox&gt;&lt;/asp:listbox&gt;&lt;br /&gt;&lt;span style="font-family:courier new;font-size:85%;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;font-size:85%;"&gt;&lt;strong&gt;VB code behind:&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;font-size:85%;"&gt;Private Sub myDataGrid_Itembound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.DataGridItemEventArgs) Handles myDataGrid.ItemDataBound&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;font-size:85%;"&gt;If e.Item.ItemType = ListItemType.EditItem Then&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;font-size:85%;"&gt;Dim intRow As Integer = CInt(e.Item.ItemIndex)&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;font-size:85%;"&gt;If Not IsDBNull(datatableCache.Rows(intRow)("DataFieldFromDataStore")) Then&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;font-size:85%;"&gt;'datatableCache.Rows(intRow)("DataFieldFromDataStore") contains the list of values (in this case comma seperated)&lt;br /&gt;Dim aryValues() As String = datatableCache.Rows(intRow)("DataFieldFromDataStore").ToString.Split(","c)&lt;br /&gt;Dim listBox As ListBox = e.Item.FindControl("listBox")&lt;br /&gt;For Each li As ListItem In listBox.Items&lt;br /&gt;If Array.IndexOf(aryValues, li.Value) &gt; -1 Then li.Selected = True&lt;br /&gt;Next&lt;br /&gt;End If&lt;br /&gt;End If&lt;br /&gt;End Sub &lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/10243499-3631069232172526421?l=beanland.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://beanland.blogspot.com/feeds/3631069232172526421/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=10243499&amp;postID=3631069232172526421' title='42 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/10243499/posts/default/3631069232172526421'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/10243499/posts/default/3631069232172526421'/><link rel='alternate' type='text/html' href='http://beanland.blogspot.com/2007/03/listbox-tricky-to-set-in.html' title='ListBox tricky to set in a DataGrid/GridView'/><author><name>Hunter</name><uri>http://www.blogger.com/profile/12751305187378249697</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>42</thr:total></entry><entry><id>tag:blogger.com,1999:blog-10243499.post-930493787758184485</id><published>2007-03-03T21:25:00.000+11:00</published><updated>2007-03-03T21:44:25.594+11:00</updated><title type='text'>CDO for receiving emails via SMTP</title><content type='html'>&lt;span style="font-family:arial;font-size:85%;"&gt;I recently discovered that .NET 2.0 does not have an inbuilt class for receiving emails via SMTP (or by any other means). Surprising omission. I started to write my own email file parser, but then had a thought... Why not use the old &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_0"&gt;CDO&lt;/span&gt; (aka &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_1"&gt;CDOSYS&lt;/span&gt;) like the old &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_2"&gt;ClassicASP&lt;/span&gt; days? This is how to do it...&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;font-size:85%;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;font-size:85%;"&gt;Create a reference in Visual Studio to Microsoft &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_3"&gt;CDO&lt;/span&gt; for Windows 2000. Now use some code like this:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:courier new;font-size:85%;"&gt;Dim &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_4"&gt;objSMTP&lt;/span&gt; As New System.Net.Mail.SmtpClient&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;font-size:85%;"&gt;Dim &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_5"&gt;strMailbox&lt;/span&gt; As String = objSMTP.PickupDirectoryLocation.Substring(0, objSMTP.PickupDirectoryLocation.LastIndexOf("\")) &amp; "\Mailbox"&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;font-size:85%;"&gt;Dim &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_6"&gt;CDODropDir&lt;/span&gt; As New &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_7"&gt;CDO&lt;/span&gt;.&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_8"&gt;DropDirectory&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;font-size:85%;"&gt;Dim &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_9"&gt;CDOMessages&lt;/span&gt; As &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_10"&gt;CDO&lt;/span&gt;.&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_11"&gt;IMessages&lt;/span&gt; = &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_12"&gt;CDODropDir&lt;/span&gt;.&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_13"&gt;GetMessages&lt;/span&gt;(&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_14"&gt;strMailbox&lt;/span&gt;)&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;font-size:85%;"&gt;Dim &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_15"&gt;CDOMessage&lt;/span&gt; As &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_16"&gt;CDO&lt;/span&gt;.Message&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;font-size:85%;"&gt;For Each &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_17"&gt;CDOMessage&lt;/span&gt; In &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_18"&gt;CDOMessages&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;font-size:85%;"&gt;   'Some useful properties:&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;font-size:85%;"&gt;   '&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_19"&gt;CDOMessage&lt;/span&gt;.To, &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_20"&gt;CDOMessage&lt;/span&gt;.CC, &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_21"&gt;CDOMessage&lt;/span&gt;.&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_22"&gt;BCC&lt;/span&gt;, &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_23"&gt;CDOMessage&lt;/span&gt;.From &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;font-size:85%;"&gt;   '&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_24"&gt;CDOMessage&lt;/span&gt;.&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_25"&gt;ReceivedTime&lt;/span&gt;, &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_26"&gt;CDOMessage&lt;/span&gt;.Subject&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;font-size:85%;"&gt;   '&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_27"&gt;CDOMessage&lt;/span&gt;.&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_28"&gt;TextBody&lt;/span&gt;, &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_29"&gt;CDOMessage&lt;/span&gt;.&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_30"&gt;HTMLBody&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;font-size:85%;"&gt;   '&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_31"&gt;CDOMessages&lt;/span&gt;.&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_32"&gt;FileName&lt;/span&gt;(&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_33"&gt;CDOMessage&lt;/span&gt;) '--Useful for deleting messages later (after you read the whole collection first!)&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;font-size:85%;"&gt;Next&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/10243499-930493787758184485?l=beanland.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://beanland.blogspot.com/feeds/930493787758184485/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=10243499&amp;postID=930493787758184485' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/10243499/posts/default/930493787758184485'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/10243499/posts/default/930493787758184485'/><link rel='alternate' type='text/html' href='http://beanland.blogspot.com/2007/03/cdo-for-receiving-emails-via-smtp.html' title='CDO for receiving emails via SMTP'/><author><name>Hunter</name><uri>http://www.blogger.com/profile/12751305187378249697</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-10243499.post-116253763214567661</id><published>2006-11-03T17:59:00.000+11:00</published><updated>2006-11-03T18:20:57.096+11:00</updated><title type='text'>Web cache gets object references - not a copy</title><content type='html'>&lt;span style="font-family:arial;"&gt;Did you know that if your retrieve an object from the cache, such as a DataView, that the object returned is a reference to the actual object. This means that if you plan to use .RowFilter, then you can end up with concurrency issues if other users are reading from the cache too.&lt;/span&gt; &lt;span style="font-family:arial;"&gt;The solution is to create a new dataview from a cached table.&lt;br /&gt;&lt;/span&gt;&lt;span style="font-family:arial;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;Bad:&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;Dim dvUsers As DataView = CType(_Context.Cache.Get("Users"), DataView)&lt;br /&gt;dvUsers.RowFilter = "User_No=2"&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;Return dvUsers("Name")&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;Good:&lt;br /&gt;&lt;/span&gt;&lt;span style="font-family:courier new;"&gt;Dim dtUsers As DataTable = CType(_Context.Cache.Get("Users"), DataTable)&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;Dim dvUsers As New DataView(dtUsers)&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;dvUsers.RowFilter = "User_No=2"&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;Return dvUsers("Name")&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/10243499-116253763214567661?l=beanland.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://beanland.blogspot.com/feeds/116253763214567661/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=10243499&amp;postID=116253763214567661' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/10243499/posts/default/116253763214567661'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/10243499/posts/default/116253763214567661'/><link rel='alternate' type='text/html' href='http://beanland.blogspot.com/2006/11/web-cache-gets-object-references-not.html' title='Web cache gets object references - not a copy'/><author><name>Hunter</name><uri>http://www.blogger.com/profile/12751305187378249697</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-10243499.post-116001444376281585</id><published>2006-10-05T12:08:00.000+10:00</published><updated>2006-10-05T12:14:03.773+10:00</updated><title type='text'>DataFormatString in a BoundField of a GridView</title><content type='html'>&lt;span style="font-family:arial;"&gt;I had a simple little problem - the &lt;span style="font-family:courier new;"&gt;DataFormatString="{0:0}"&lt;/span&gt; in a BoundField was not working. After a bit of fiddling i found that the HTML Encoding was stopping it (by encoding the format string before it was applied). Simply setting &lt;span style="font-family:courier new;"&gt;HtmlEncode="False"&lt;/span&gt; in that BoundField fixed the issue.&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/10243499-116001444376281585?l=beanland.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://beanland.blogspot.com/feeds/116001444376281585/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=10243499&amp;postID=116001444376281585' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/10243499/posts/default/116001444376281585'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/10243499/posts/default/116001444376281585'/><link rel='alternate' type='text/html' href='http://beanland.blogspot.com/2006/10/dataformatstring-in-boundfield-of.html' title='DataFormatString in a BoundField of a GridView'/><author><name>Hunter</name><uri>http://www.blogger.com/profile/12751305187378249697</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-10243499.post-115952084714184965</id><published>2006-09-29T19:05:00.000+10:00</published><updated>2006-09-29T19:07:27.143+10:00</updated><title type='text'>Client Validators not working in Firefox &amp; Menu Control with master pages not working</title><content type='html'>&lt;span style="font-family:arial;"&gt;If you upgraded a .NET 1.x project to 2.0 and now have issues with Client Validators not functioning in Firefox (they work server side) or the menu control is displaying the menu items all over the place when used with master pages, then try this tip. In the Web.Config, if there is the tag:&lt;br /&gt;&lt;/span&gt;&lt;span style="font-family:courier new;"&gt;&lt;xhtmlconformance mode="Legacy"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;then remove it - it is the root of all evil - unless you plan to use IE 3!&lt;br /&gt;One interesting thing to note - removing it changes all of the client side id's to .NET 2's new way of doing things, so if you have written some javascript into your pages - changes may be required.&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/10243499-115952084714184965?l=beanland.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://beanland.blogspot.com/feeds/115952084714184965/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=10243499&amp;postID=115952084714184965' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/10243499/posts/default/115952084714184965'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/10243499/posts/default/115952084714184965'/><link rel='alternate' type='text/html' href='http://beanland.blogspot.com/2006/09/client-validators-not-working-in.html' title='Client Validators not working in Firefox &amp; Menu Control with master pages not working'/><author><name>Hunter</name><uri>http://www.blogger.com/profile/12751305187378249697</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-10243499.post-115952059402156024</id><published>2006-09-29T18:59:00.000+10:00</published><updated>2006-09-29T19:03:14.023+10:00</updated><title type='text'>blog.start()</title><content type='html'>&lt;span style="font-family:arial;"&gt;I am finally going to get my act into gear and start blogging. I have a few things to share, so i'll get those up in the next week. Then I need to rebuild my web site and move it to a new host. I have a few new things - personal and web dev to add to that too.&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/10243499-115952059402156024?l=beanland.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://beanland.blogspot.com/feeds/115952059402156024/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=10243499&amp;postID=115952059402156024' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/10243499/posts/default/115952059402156024'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/10243499/posts/default/115952059402156024'/><link rel='alternate' type='text/html' href='http://beanland.blogspot.com/2006/09/blogstart.html' title='blog.start()'/><author><name>Hunter</name><uri>http://www.blogger.com/profile/12751305187378249697</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-10243499.post-110609367492331488</id><published>2005-01-19T11:13:00.000+11:00</published><updated>2005-01-19T11:14:34.923+11:00</updated><title type='text'>First Post</title><content type='html'>&lt;span style="font-family:arial;"&gt;Hi, this is my first post. I'll add some text and photos soon.&lt;/span&gt;&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/10243499-110609367492331488?l=beanland.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://beanland.blogspot.com/feeds/110609367492331488/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=10243499&amp;postID=110609367492331488' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/10243499/posts/default/110609367492331488'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/10243499/posts/default/110609367492331488'/><link rel='alternate' type='text/html' href='http://beanland.blogspot.com/2005/01/first-post.html' title='First Post'/><author><name>Hunter</name><uri>http://www.blogger.com/profile/12751305187378249697</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry></feed>
