<?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-5613605370877277292</id><updated>2011-11-27T16:54:41.511-07:00</updated><category term='Small Business Accounting'/><category term='VB.NET'/><category term='DNN'/><category term='JavaScript'/><category term='SQL'/><category term='DotNetNuke'/><category term='ASP.NET'/><title type='text'>Dot Net Tidbits</title><subtitle type='html'>Solutions to Stuff I've Had Issues With</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://dot-net-tidbits.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5613605370877277292/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://dot-net-tidbits.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Jeff</name><uri>http://www.blogger.com/profile/12872404530660506378</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-5613605370877277292.post-372145600439023321</id><published>2009-10-19T20:46:00.004-07:00</published><updated>2009-10-19T20:53:15.183-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Small Business Accounting'/><title type='text'>Migrating or Moving Microsoft Small Business Accounting (SBA) 2009 to a new Server</title><content type='html'>I'm not sure what exactly I did to fix my SBA problem, since I tried about 300 things.&lt;br /&gt;&lt;br /&gt;The problem was that I wanted to move the database from one server to another, but once it got to the new server I couldn't connect from anywhere except the server itself.&lt;br /&gt;&lt;br /&gt;The error message was:&lt;br /&gt;&lt;blockquote&gt;The company could not be opened. Please ensure the SQL Server exists, the service is running and access has been granted.&lt;/blockquote&gt;Like I said, I tried a ton of stuff, but when I finally noticed that it was working, I modified the multi-user SBC file to read:&lt;br /&gt;&lt;br /&gt;SERVERNAME\&lt;span style="color: rgb(51, 51, 153);"&gt;MSSQLSERVER&lt;/span&gt;,5356&lt;br /&gt;&lt;br /&gt;instead of just SERVERNAME,5356&lt;br /&gt;&lt;br /&gt;That's the first and only time I've ever seen a named instance required when you only have one instance running, but it works now.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5613605370877277292-372145600439023321?l=dot-net-tidbits.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dot-net-tidbits.blogspot.com/feeds/372145600439023321/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://dot-net-tidbits.blogspot.com/2009/10/migrating-or-moving-microsoft-small.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5613605370877277292/posts/default/372145600439023321'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5613605370877277292/posts/default/372145600439023321'/><link rel='alternate' type='text/html' href='http://dot-net-tidbits.blogspot.com/2009/10/migrating-or-moving-microsoft-small.html' title='Migrating or Moving Microsoft Small Business Accounting (SBA) 2009 to a new Server'/><author><name>Jeff</name><uri>http://www.blogger.com/profile/12872404530660506378</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-5613605370877277292.post-6379384092813280378</id><published>2009-09-29T14:54:00.003-07:00</published><updated>2009-09-29T15:04:15.048-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='VB.NET'/><category scheme='http://www.blogger.com/atom/ns#' term='DotNetNuke'/><category scheme='http://www.blogger.com/atom/ns#' term='DNN'/><title type='text'>Accessing Custom Profile Properties in DNN (DotNetNuke)</title><content type='html'>In DNN you can create custom profile properties to add to user profiles.  There are all kinds of uses for this, but for the sake of the example, let's say we want to add a property called "FavoriteColor" to the user profile.&lt;br /&gt;&lt;br /&gt;Adding the property is easy enough.  Go to Admin--&gt; User Accounts, then select Manage Profile Properties from the Edit menu.&lt;br /&gt;&lt;br /&gt;Add your new property, and give it a type and a name.&lt;br /&gt;&lt;br /&gt;Now, to access the value from your code:&lt;br /&gt;&lt;blockquote&gt;Dim myValue as string&lt;br /&gt;Dim m_objProperties As DotNetNuke.Entities.Profile.ProfilePropertyDefinitionCollection&lt;br /&gt;Dim curUser As DotNetNuke.Entities.Users.UserInfo = DotNetNuke.Entities.Users.UserController.GetCurrentUserInfo()&lt;br /&gt;&lt;br /&gt;m_objProperties = curUser.Profile.ProfileProperties&lt;br /&gt;myValue  = m_objProperties.GetByName("FavoriteColor").PropertyValue&lt;/blockquote&gt;You probably need to add code to make sure the user is logged in.  In this example you could verify that &lt;span id="spBody" class="Forum_Normal"&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;curUser.UserID&lt;/span&gt; &gt;=0&lt;/span&gt;.&lt;br /&gt;&lt;br /&gt;Reference: &lt;a href="http://www.dotnetnuke.com/Community/Forums/tabid/795/forumid/111/threadid/58226/scope/posts/threadpage/3/Default.aspx"&gt;DNN Message Board&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5613605370877277292-6379384092813280378?l=dot-net-tidbits.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dot-net-tidbits.blogspot.com/feeds/6379384092813280378/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://dot-net-tidbits.blogspot.com/2009/09/accessing-custom-profile-properties-in.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5613605370877277292/posts/default/6379384092813280378'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5613605370877277292/posts/default/6379384092813280378'/><link rel='alternate' type='text/html' href='http://dot-net-tidbits.blogspot.com/2009/09/accessing-custom-profile-properties-in.html' title='Accessing Custom Profile Properties in DNN (DotNetNuke)'/><author><name>Jeff</name><uri>http://www.blogger.com/profile/12872404530660506378</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-5613605370877277292.post-9033734709537489337</id><published>2009-07-31T16:49:00.002-07:00</published><updated>2009-07-31T16:56:08.670-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='JavaScript'/><category scheme='http://www.blogger.com/atom/ns#' term='DotNetNuke'/><category scheme='http://www.blogger.com/atom/ns#' term='ASP.NET'/><category scheme='http://www.blogger.com/atom/ns#' term='DNN'/><title type='text'>DotNetNuke (DNN) and JavaScript: Referring to Controls by ID</title><content type='html'>The client ID of a control in ASP.NET is different than the server control name.&lt;br /&gt;&lt;br /&gt;Meaning, specifically, that if you name your textbox &lt;span style="font-style: italic;"&gt;txt1&lt;/span&gt;, ASP.NET (and therefore DNN) will rename it something like &lt;span style="font-style: italic;"&gt;DNN_ctr383_mymodule_view_txt1&lt;/span&gt;.&lt;br /&gt;&lt;br /&gt;That causes issues when you want to refer to a control in a JavaScript on the client side (for instance in the OnClientClick event).&lt;br /&gt;&lt;br /&gt;Fortunately, there is an easy way to do this.  Server controls have a property called ClientID that you can access easily.&lt;br /&gt;&lt;br /&gt;For example:&lt;br /&gt;&lt;p&gt;var myObject = document.getElementById("&lt;%= txt1.ClientID %&gt;");&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5613605370877277292-9033734709537489337?l=dot-net-tidbits.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dot-net-tidbits.blogspot.com/feeds/9033734709537489337/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://dot-net-tidbits.blogspot.com/2009/07/dotnetnuke-dnn-and-javascript-referring.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5613605370877277292/posts/default/9033734709537489337'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5613605370877277292/posts/default/9033734709537489337'/><link rel='alternate' type='text/html' href='http://dot-net-tidbits.blogspot.com/2009/07/dotnetnuke-dnn-and-javascript-referring.html' title='DotNetNuke (DNN) and JavaScript: Referring to Controls by ID'/><author><name>Jeff</name><uri>http://www.blogger.com/profile/12872404530660506378</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-5613605370877277292.post-8287901555163526514</id><published>2009-06-24T17:34:00.002-07:00</published><updated>2009-06-24T17:41:50.952-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='VB.NET'/><category scheme='http://www.blogger.com/atom/ns#' term='ASP.NET'/><title type='text'>ASP.NET AJAX Color Picker Control Breaks to Second Line</title><content type='html'>I added the new ASP.NET AJAX ColorPicker control to a project.  &lt;br /&gt;&lt;br /&gt;I also added the little colorpicker image and the div to show the color that has been selected.&lt;br /&gt;&lt;br /&gt;By default, when you add those controls, the colorpicker will break to a second line.  To fix it, add style="float:left" to the textbox properties.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;The Situation:&lt;/span&gt;&lt;br /&gt;You have an ASP.NET AJAX Color Picker control on your page, and the color picker control breaks onto a second line.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;The Solution:&lt;/span&gt;&lt;br /&gt;Add style="float:left" to the textbox properties&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Possible Google Searches (ignore this part- it's used to try to help Google find this page):&lt;br /&gt;&lt;/span&gt;&lt;ul&gt;&lt;li&gt;ASP.NET controls break second line&lt;/li&gt;&lt;li&gt;AJAX Color Picker controls won't stay on same line&lt;/li&gt;&lt;li&gt;VB.NET controls line break&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5613605370877277292-8287901555163526514?l=dot-net-tidbits.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dot-net-tidbits.blogspot.com/feeds/8287901555163526514/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://dot-net-tidbits.blogspot.com/2009/06/aspnet-ajax-color-picker-control-breaks.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5613605370877277292/posts/default/8287901555163526514'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5613605370877277292/posts/default/8287901555163526514'/><link rel='alternate' type='text/html' href='http://dot-net-tidbits.blogspot.com/2009/06/aspnet-ajax-color-picker-control-breaks.html' title='ASP.NET AJAX Color Picker Control Breaks to Second Line'/><author><name>Jeff</name><uri>http://www.blogger.com/profile/12872404530660506378</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-5613605370877277292.post-3547788786805718357</id><published>2009-06-24T14:18:00.002-07:00</published><updated>2009-06-24T14:58:30.721-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='DotNetNuke'/><category scheme='http://www.blogger.com/atom/ns#' term='SQL'/><category scheme='http://www.blogger.com/atom/ns#' term='DNN'/><title type='text'>DNN SQL Window: Script Must Include Extra Line Breaks At the End</title><content type='html'>I had a very frustrating problem the other day.  I had a SQL script that I was trying to run in the DotNetNuke (DNN) SQL Window on the Host Menu.&lt;br /&gt;&lt;br /&gt;It kept erroring in an odd spot, and I couldn't figure it out.&lt;br /&gt;&lt;br /&gt;Well, it turns out that you need to add an extra line break after the end of your code.  That's probably why the template has an extra comment block at the end- which I erased for some reason.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;Note: &lt;/span&gt;&lt;span style="font-style: italic;"&gt;This has been fixed in DNN 5.0&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;In my case, the error was as below:&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;/span&gt;&lt;blockquote&gt;System.Data.SqlClient.SqlException: Incorrect syntax near 'GO'. at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection) at System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection) at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj) at System.Data.SqlClient.TdsParser.Run(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj) at System.Data.SqlClient.SqlCommand.RunExecuteNonQueryTds(String methodName, Boolean async) at System.Data.SqlClient.SqlCommand.InternalExecuteNonQuery(DbAsyncResult result, String methodName, Boolean sendToPipe) at System.Data.SqlClient.SqlCommand.ExecuteNonQuery() at DotNetNuke.Data.SqlDataProvider.ExecuteADOScript(String SQL) at DotNetNuke.Data.SqlDataProvider.ExecuteScript(String Script, Boolean UseTransactions&lt;/blockquote&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;The Situation:&lt;/span&gt;&lt;br /&gt;You are trying to run a script through the DNN SQL Window from the Host Menu.  The script seems to error for no particular reason.  The script will run through SQL Management Studio.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;The Solution:&lt;/span&gt;&lt;br /&gt;Add a few extra line returns to the end of your script.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Possible Google Searches (ignore this part- it's used to try to help Google find this page):&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;DNN SQL Script won't run&lt;/li&gt;&lt;li&gt;DotNetNuke SQL Script Errors on Go&lt;/li&gt;&lt;li&gt;DNN SQL Script Incorrect syntax near 'GO'&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5613605370877277292-3547788786805718357?l=dot-net-tidbits.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dot-net-tidbits.blogspot.com/feeds/3547788786805718357/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://dot-net-tidbits.blogspot.com/2009/06/dnn-sql-window-script-must-include.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5613605370877277292/posts/default/3547788786805718357'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5613605370877277292/posts/default/3547788786805718357'/><link rel='alternate' type='text/html' href='http://dot-net-tidbits.blogspot.com/2009/06/dnn-sql-window-script-must-include.html' title='DNN SQL Window: Script Must Include Extra Line Breaks At the End'/><author><name>Jeff</name><uri>http://www.blogger.com/profile/12872404530660506378</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-5613605370877277292.post-2239924229165117622</id><published>2009-06-24T14:06:00.003-07:00</published><updated>2009-06-24T14:58:47.911-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='DotNetNuke'/><category scheme='http://www.blogger.com/atom/ns#' term='SQL'/><category scheme='http://www.blogger.com/atom/ns#' term='DNN'/><title type='text'>DNN SQLDataProvider Files Must Be Encoded as UTF-8</title><content type='html'>When writing a DotNetNuke module, the script file that creates the database objects is called the DataProvider file.  This file must be saved with UTF-8 encoding.&lt;br /&gt;&lt;br /&gt;If not, you may get an error on install.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;The Situation:&lt;/span&gt;&lt;br /&gt;Your SQL script will run in the SQL window under the Host menu, but fails when you try to install the module.  You may specifically get an error anywhere where you use a '+' sign in the code.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;The Solution:&lt;/span&gt;&lt;br /&gt;Open your SQLDataProvider file and resave it with UTF-8 encoding.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Possible Google Searches (ignore this part- it's used to try to help Google find this page):&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;DNN SQL Script fails on install&lt;/li&gt;&lt;li&gt;Error while installing SQLDataProvider DotNetNuke&lt;/li&gt;&lt;li&gt;DNN Script Runs in SQL Window Fails on Install&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5613605370877277292-2239924229165117622?l=dot-net-tidbits.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dot-net-tidbits.blogspot.com/feeds/2239924229165117622/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://dot-net-tidbits.blogspot.com/2009/06/dnn-sqldataprovider-files-must-be.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5613605370877277292/posts/default/2239924229165117622'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5613605370877277292/posts/default/2239924229165117622'/><link rel='alternate' type='text/html' href='http://dot-net-tidbits.blogspot.com/2009/06/dnn-sqldataprovider-files-must-be.html' title='DNN SQLDataProvider Files Must Be Encoded as UTF-8'/><author><name>Jeff</name><uri>http://www.blogger.com/profile/12872404530660506378</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-5613605370877277292.post-7548845071652227375</id><published>2009-06-24T13:57:00.000-07:00</published><updated>2009-06-24T14:01:15.114-07:00</updated><title type='text'>The Inaugural Post</title><content type='html'>I am not the world's best programmer.  Far from it.&lt;br /&gt;&lt;br /&gt;Most of the time when I encounter an issue while programming I head off to Google and the problem is solved in just a few clicks.&lt;br /&gt;&lt;br /&gt;Sometimes that is not the case.&lt;br /&gt;&lt;br /&gt;So, in the times where I actually have to do &lt;span style="font-style: italic;"&gt;work&lt;/span&gt; to solve my problems, I'll write about them and add the solution here.  That way, if you, the Googling public, have the same problem, maybe I'll save you a few minutes.&lt;br /&gt;&lt;br /&gt;My little way of giving back.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5613605370877277292-7548845071652227375?l=dot-net-tidbits.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dot-net-tidbits.blogspot.com/feeds/7548845071652227375/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://dot-net-tidbits.blogspot.com/2009/06/inaugural-post.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5613605370877277292/posts/default/7548845071652227375'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5613605370877277292/posts/default/7548845071652227375'/><link rel='alternate' type='text/html' href='http://dot-net-tidbits.blogspot.com/2009/06/inaugural-post.html' title='The Inaugural Post'/><author><name>Jeff</name><uri>http://www.blogger.com/profile/12872404530660506378</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></feed>
