<?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-8278927</id><updated>2011-12-14T18:50:04.582-08:00</updated><category term='sharepoint 2010'/><category term='ignite'/><category term='sharepoint'/><category term='developer'/><title type='text'>The Sharepoint Diary</title><subtitle type='html'>My Sharepoint Adventures. Windows Sharepoint Services and Sharepoint Portal Server</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://sharepointdiary.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8278927/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://sharepointdiary.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>bl0gg32</name><uri>http://www.blogger.com/profile/17700012969702551321</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='25' height='32' src='http://4.bp.blogspot.com/_f8Xvkg-_Fjw/SuheWQNAKmI/AAAAAAAAAAM/TIbeIgXfwlo/S220/me.JPG'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>27</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-8278927.post-7250984612366925007</id><published>2010-09-16T07:40:00.000-07:00</published><updated>2010-09-16T07:55:16.231-07:00</updated><title type='text'>Configuring SharePoint 2010 services with PowerShell (and without the GUIDs in the database names)</title><content type='html'>Did you wonder how to configure sharepoint services with powershell?&lt;br /&gt;Did you wonder how to provision sharepoint services without the guids in the database names? &lt;br /&gt;&lt;br /&gt;Well, a lot of people does :) &lt;br /&gt;&lt;br /&gt;Greetings goes to Todd Carter, who shared the long powershell script in his blog &lt;a href="http://todd-carter.com/post/2010/04/26/The-Wizard-Likes-His-GUIDs.aspx"&gt;http://todd-carter.com/post/2010/04/26/The-Wizard-Likes-His-GUIDs.aspx&lt;/a&gt; &lt;br /&gt;&lt;br /&gt;Duray Akar&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8278927-7250984612366925007?l=sharepointdiary.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://todd-carter.com/post/2010/04/26/The-Wizard-Likes-His-GUIDs.aspx' title='Configuring SharePoint 2010 services with PowerShell (and without the GUIDs in the database names)'/><link rel='replies' type='application/atom+xml' href='http://sharepointdiary.blogspot.com/feeds/7250984612366925007/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8278927&amp;postID=7250984612366925007' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8278927/posts/default/7250984612366925007'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8278927/posts/default/7250984612366925007'/><link rel='alternate' type='text/html' href='http://sharepointdiary.blogspot.com/2010/09/configuring-sharepoint-2010-services.html' title='Configuring SharePoint 2010 services with PowerShell (and without the GUIDs in the database names)'/><author><name>bl0gg32</name><uri>http://www.blogger.com/profile/17700012969702551321</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='25' height='32' src='http://4.bp.blogspot.com/_f8Xvkg-_Fjw/SuheWQNAKmI/AAAAAAAAAAM/TIbeIgXfwlo/S220/me.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8278927.post-4942561043938369451</id><published>2009-10-28T08:36:00.000-07:00</published><updated>2009-11-02T02:46:30.137-08:00</updated><title type='text'>Watch out for dispose issue in the snippets for Visual Web Parts</title><content type='html'>The code snippet below has an issue that you need to watch out...&lt;br /&gt;The dispose guidelines have NOT changed in SP2010, so you have to be careful:&lt;br /&gt;&lt;code&gt;&lt;br /&gt;protected void Page_Load(object sender, EventArgs e)&lt;br /&gt;{&lt;br /&gt;SPWeb thisWeb = null;&lt;br /&gt;try&lt;br /&gt;{&lt;br /&gt;TreeNode node;&lt;br /&gt;thisWeb = SPContext.Current.Web;&lt;br /&gt;//Add the Web's title as the display text for the tree node, and add the URL as the NavigateUri&lt;br /&gt;node = new TreeNode(thisWeb.Title, null, null, thisWeb.Url, "_self");&lt;br /&gt;//The Visual Web Part has a treeview control called siteStructure&lt;br /&gt;siteStructure.Nodes.Add(node);&lt;br /&gt;//Get a reference to the current node, so child nodes can be added in the correct position&lt;br /&gt;TreeNode parentNode = node;&lt;br /&gt;//Iterate through the Lists collection of the Web&lt;br /&gt;foreach (SPList list in thisWeb.Lists)&lt;br /&gt;{&lt;br /&gt;if (!list.Hidden)&lt;br /&gt;{&lt;br /&gt;node = new TreeNode(list.Title, null, null, list.DefaultViewUrl, "_self");&lt;br /&gt;parentNode.ChildNodes.Add(node);&lt;br /&gt;}&lt;br /&gt;}&lt;br /&gt;foreach (SPWeb childWeb in thisWeb.Webs)&lt;br /&gt;{&lt;br /&gt;//Call our own helper function for adding each child Web to the tree&lt;br /&gt;addWebs(childWeb, parentNode);&lt;br /&gt;&lt;font color="Red"&gt;&lt;b&gt;// have to dispose those&lt;br /&gt;// you should use a try finally block to trap exceptions, &lt;br /&gt;// but at least do:&lt;br /&gt;childWeb.Dispose();&lt;/b&gt;&lt;/font&gt;&lt;br /&gt;}&lt;br /&gt;siteStructure.CollapseAll();&lt;br /&gt;}&lt;br /&gt;finally&lt;br /&gt;{ &lt;br /&gt;&lt;font color="Red"&gt;&lt;br /&gt;// you should not dispose the web that you got from the context&lt;br /&gt;// note that this finally block is obsolete now&lt;br /&gt;//&lt;strike&gt;thisWeb.Dispose();&lt;/strike&gt; &lt;/font&gt;     &lt;br /&gt;}&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;font Color=Red&gt;&lt;br /&gt;Update: These issues have been fixed thanks to Paul Andrew.&lt;br /&gt;&lt;/font&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8278927-4942561043938369451?l=sharepointdiary.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://blogs.msdn.com/pandrew/pages/GettingStarted2010Snippets1.aspx' title='Watch out for dispose issue in the snippets for Visual Web Parts'/><link rel='replies' type='application/atom+xml' href='http://sharepointdiary.blogspot.com/feeds/4942561043938369451/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8278927&amp;postID=4942561043938369451' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8278927/posts/default/4942561043938369451'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8278927/posts/default/4942561043938369451'/><link rel='alternate' type='text/html' href='http://sharepointdiary.blogspot.com/2009/10/watch-out-for-dispose-issue-in-snippets.html' title='Watch out for dispose issue in the snippets for Visual Web Parts'/><author><name>bl0gg32</name><uri>http://www.blogger.com/profile/17700012969702551321</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='25' height='32' src='http://4.bp.blogspot.com/_f8Xvkg-_Fjw/SuheWQNAKmI/AAAAAAAAAAM/TIbeIgXfwlo/S220/me.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8278927.post-7002946425382500234</id><published>2009-10-28T08:19:00.000-07:00</published><updated>2009-10-28T08:26:00.232-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='sharepoint 2010'/><category scheme='http://www.blogger.com/atom/ns#' term='developer'/><title type='text'>Developer Readiness for SharePoint 2010</title><content type='html'>10 modules to get ready to develop on SharePoint 2010...&lt;br /&gt;&lt;br /&gt;It is a work in progress, and the virtual labs are not there yet.&lt;br /&gt;&lt;br /&gt;If you want to set up your development environment, you should check &lt;a href="http://msdn.microsoft.com/en-us/library/ee554869(office.14).aspx"&gt;Setting Up the Development Environment for SharePoint Server&lt;/a&gt;, which is also preliminary and is subject to change. Who is not subject to a change nowadays :)&lt;br /&gt;&lt;br /&gt;Happy SharePointing...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8278927-7002946425382500234?l=sharepointdiary.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://msdn.microsoft.com/en-us/sharepoint/ee513147.aspx' title='Developer Readiness for SharePoint 2010'/><link rel='replies' type='application/atom+xml' href='http://sharepointdiary.blogspot.com/feeds/7002946425382500234/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8278927&amp;postID=7002946425382500234' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8278927/posts/default/7002946425382500234'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8278927/posts/default/7002946425382500234'/><link rel='alternate' type='text/html' href='http://sharepointdiary.blogspot.com/2009/10/developer-readiness-for-sharepoint-2010.html' title='Developer Readiness for SharePoint 2010'/><author><name>bl0gg32</name><uri>http://www.blogger.com/profile/17700012969702551321</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='25' height='32' src='http://4.bp.blogspot.com/_f8Xvkg-_Fjw/SuheWQNAKmI/AAAAAAAAAAM/TIbeIgXfwlo/S220/me.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8278927.post-2905847285634581080</id><published>2009-10-28T08:09:00.001-07:00</published><updated>2009-10-28T08:18:46.146-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='ignite'/><category scheme='http://www.blogger.com/atom/ns#' term='sharepoint'/><title type='text'>Hello SP2010</title><content type='html'>Hi, &lt;br /&gt;&lt;br /&gt;Re-igniting (:)) my blog for 2010...&lt;br /&gt;As I go deeper into SP2010, I will share my findings here.&lt;br /&gt;Since I keep my expectations high, I somewhat expect to be disappointed to a certain degree.&lt;br /&gt;But will keep my comments on the constructive side.&lt;br /&gt;&lt;br /&gt;Happy SharePointing...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8278927-2905847285634581080?l=sharepointdiary.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sharepointdiary.blogspot.com/feeds/2905847285634581080/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8278927&amp;postID=2905847285634581080' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8278927/posts/default/2905847285634581080'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8278927/posts/default/2905847285634581080'/><link rel='alternate' type='text/html' href='http://sharepointdiary.blogspot.com/2009/10/hello-sp2010.html' title='Hello SP2010'/><author><name>bl0gg32</name><uri>http://www.blogger.com/profile/17700012969702551321</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='25' height='32' src='http://4.bp.blogspot.com/_f8Xvkg-_Fjw/SuheWQNAKmI/AAAAAAAAAAM/TIbeIgXfwlo/S220/me.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8278927.post-115748758701599248</id><published>2006-09-05T13:09:00.000-07:00</published><updated>2006-09-05T13:19:47.026-07:00</updated><title type='text'>Sharing my point on Avis Assist</title><content type='html'>I almost never post rants and raves, but I cannot stop the urge to post this one. &lt;br /&gt;&lt;br /&gt;I want to shout &lt;a href="http://www.avis.com/AvisWeb/JSP/US/en/deals/us_assist.jsp?ICID=DealsLanding&amp;IID=avisassist"&gt;Avis Assist SUCKS&lt;/a&gt;, and this is keeping my French for a later time!&lt;br /&gt;&lt;br /&gt;They should be ashamed to provide this as a service, let alone request you to pay for it. It is mind-boggling even you give it as a complimentary service...&lt;br /&gt;&lt;br /&gt;Avis Assist fails to find the direction you are traveling, takes about 3 "reroute" commands to get it right.&lt;br /&gt;Avis Assist has outdated road information, it tells you to make a left where there is an elevated median.&lt;br /&gt;Avis Assist looses connectivity, you get disconnected in the middle of Manhattan.&lt;br /&gt;Avis Assist does not have a map, just points out the direction you need to go, and gives the mileage. If there are 4 exits close to each other, go figure...&lt;br /&gt;&lt;br /&gt;I am glad, I am not the only one that shares this opinion.&lt;br /&gt;Here is &lt;a href="http://weblogs.asp.net/skillet/archive/2004/08/15/214963.aspx"&gt;Scott Van Vliet&lt;/a&gt;, sharing my pain...&lt;br /&gt;&lt;br /&gt;They did take the charges back from my bill, but still, it SUCKS. It is not the charge, but the disappointment, and sorror of not having my "Microsoft Streets &amp; Trips" CD's with me... I drove about 5000 miles up and down the East Coast using that, and did not get lost once, let alone get notified about road works and alternative routes, finding nearby hotels and restaurants, and  doing it all OFFLINE. &lt;br /&gt;&lt;br /&gt;I will NEVER trust to Avis Assist, and keep my Streets and Trips CD's with me all the time, in my laptop case...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8278927-115748758701599248?l=sharepointdiary.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.avis.com/AvisWeb/JSP/US/en/deals/us_assist.jsp?ICID=DealsLanding&amp;IID=avisassist' title='Sharing my point on Avis Assist'/><link rel='replies' type='application/atom+xml' href='http://sharepointdiary.blogspot.com/feeds/115748758701599248/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8278927&amp;postID=115748758701599248' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8278927/posts/default/115748758701599248'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8278927/posts/default/115748758701599248'/><link rel='alternate' type='text/html' href='http://sharepointdiary.blogspot.com/2006/09/sharing-my-point-on-avis-assist.html' title='Sharing my point on Avis Assist'/><author><name>bl0gg32</name><uri>http://www.blogger.com/profile/17700012969702551321</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='25' height='32' src='http://4.bp.blogspot.com/_f8Xvkg-_Fjw/SuheWQNAKmI/AAAAAAAAAAM/TIbeIgXfwlo/S220/me.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8278927.post-115679516259017192</id><published>2006-08-28T12:59:00.000-07:00</published><updated>2006-08-28T12:59:22.590-07:00</updated><title type='text'>Using Business Data Catalog in Sharepoint 2007 at Jacksonville Code Camp</title><content type='html'>I presented this topic @ JAX Code Camp, find the details in the link below&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.sharepointblogs.com/sharepointdiary/archive/2006/08/28/11386.aspx"&gt;Using Business Data Catalog in Sharepoint 2007 at Jacksonville Code Camp&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8278927-115679516259017192?l=sharepointdiary.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.sharepointblogs.com/sharepointdiary/archive/2006/08/28/11386.aspx' title='Using Business Data Catalog in Sharepoint 2007 at Jacksonville Code Camp'/><link rel='replies' type='application/atom+xml' href='http://sharepointdiary.blogspot.com/feeds/115679516259017192/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8278927&amp;postID=115679516259017192' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8278927/posts/default/115679516259017192'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8278927/posts/default/115679516259017192'/><link rel='alternate' type='text/html' href='http://sharepointdiary.blogspot.com/2006/08/using-business-data-catalog-in.html' title='Using Business Data Catalog in Sharepoint 2007 at Jacksonville Code Camp'/><author><name>bl0gg32</name><uri>http://www.blogger.com/profile/17700012969702551321</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='25' height='32' src='http://4.bp.blogspot.com/_f8Xvkg-_Fjw/SuheWQNAKmI/AAAAAAAAAAM/TIbeIgXfwlo/S220/me.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8278927.post-115679503898916060</id><published>2006-08-28T12:57:00.000-07:00</published><updated>2006-08-28T12:57:19.616-07:00</updated><title type='text'>I won the Coolest Code Award !</title><content type='html'>&lt;a href="http://www.sharepointblogs.com/sharepointdiary/archive/2006/08/28/11387.aspx"&gt;Duray Akar's Blog : I won the Coolest Code Award !&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Check it on sharepointblogs&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8278927-115679503898916060?l=sharepointdiary.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.sharepointblogs.com/sharepointdiary/archive/2006/08/28/11387.aspx' title='I won the Coolest Code Award !'/><link rel='replies' type='application/atom+xml' href='http://sharepointdiary.blogspot.com/feeds/115679503898916060/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8278927&amp;postID=115679503898916060' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8278927/posts/default/115679503898916060'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8278927/posts/default/115679503898916060'/><link rel='alternate' type='text/html' href='http://sharepointdiary.blogspot.com/2006/08/i-won-coolest-code-award.html' title='I won the Coolest Code Award !'/><author><name>bl0gg32</name><uri>http://www.blogger.com/profile/17700012969702551321</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='25' height='32' src='http://4.bp.blogspot.com/_f8Xvkg-_Fjw/SuheWQNAKmI/AAAAAAAAAAM/TIbeIgXfwlo/S220/me.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8278927.post-115564528282325137</id><published>2006-08-15T05:20:00.000-07:00</published><updated>2006-08-23T08:33:26.680-07:00</updated><title type='text'>Jax Code Camp 2006 August 26th</title><content type='html'>&lt;a href="http://codecamp.jaxdug.com"&gt;Jax Code Camp 2006 August 26th&lt;/a&gt; is coming up. Different then other code camps, this one will have different tracks. &lt;a href="http://cs.jaxdug.com/blogs/codecamp_dbottjer_vinaya/archive/2006/07/06/1620.aspx"&gt;Click here to get more information about the tracks from Vinay Ahuja&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;And I will be presenting a SharePoint session, namely Business Data Catalog, thanks to &lt;a href="http://www.wildwires.com/blog/"&gt;Stacy Draper&lt;/a&gt;, &lt;a href="http://www.andrewconnell.com/blog/"&gt;Andrew Connell&lt;/a&gt; and Vinay Ahuja.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://codecamp.jaxdug.com/Agenda/tabid/73/Default.aspx"&gt;Check the agenda here&lt;/a&gt;. You may find very interesting sessions for yourself!&lt;br /&gt;&lt;br /&gt;&lt;a href="http://codecamp.jaxdug.com"&gt;&lt;br /&gt;&lt;img src="http://www.andrewconnell.com/images/JAXCCSpeaker.gif" border="0"&gt;&lt;br /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Technorati: &lt;a href="http://technorati.com/tag/jacksonvillecodecamp06" rel=tag&gt;jacksonvillecodecamp06&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8278927-115564528282325137?l=sharepointdiary.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://codecamp.jaxdug.com' title='Jax Code Camp 2006 August 26th'/><link rel='replies' type='application/atom+xml' href='http://sharepointdiary.blogspot.com/feeds/115564528282325137/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8278927&amp;postID=115564528282325137' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8278927/posts/default/115564528282325137'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8278927/posts/default/115564528282325137'/><link rel='alternate' type='text/html' href='http://sharepointdiary.blogspot.com/2006/08/jax-code-camp-2006-august-26th.html' title='Jax Code Camp 2006 August 26th'/><author><name>bl0gg32</name><uri>http://www.blogger.com/profile/17700012969702551321</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='25' height='32' src='http://4.bp.blogspot.com/_f8Xvkg-_Fjw/SuheWQNAKmI/AAAAAAAAAAM/TIbeIgXfwlo/S220/me.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8278927.post-114977700448320896</id><published>2006-06-08T07:14:00.000-07:00</published><updated>2006-06-08T07:32:37.850-07:00</updated><title type='text'>Sharepoint 123 Session 100</title><content type='html'>We did the first sesion last weekend, and it went well, except for some timing issues...&lt;br /&gt;Apparently 3 hours is not going to cut it for a separate seminar + HOL, even 3 hours is a pretty long time...&lt;br /&gt;&lt;br /&gt;Stacy and I are planning the 200 session to be a "blended" one, at the same location...&lt;br /&gt;&lt;br /&gt;But we got some good &lt;a href="http://geekswithblogs.net/maisblog/archive/2006/06/03/80643.aspx"&gt;reviews&lt;/a&gt; from the audience, and Stacy has an interesting &lt;a href="http://www.wildwires.com/Blog/PermaLink,guid,adb5e47c-a02a-467c-9a9f-d83409cd8508.aspx"&gt;point of view&lt;/a&gt;. :)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8278927-114977700448320896?l=sharepointdiary.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sharepointdiary.blogspot.com/feeds/114977700448320896/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8278927&amp;postID=114977700448320896' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8278927/posts/default/114977700448320896'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8278927/posts/default/114977700448320896'/><link rel='alternate' type='text/html' href='http://sharepointdiary.blogspot.com/2006/06/sharepoint-123-session-100.html' title='Sharepoint 123 Session 100'/><author><name>bl0gg32</name><uri>http://www.blogger.com/profile/17700012969702551321</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='25' height='32' src='http://4.bp.blogspot.com/_f8Xvkg-_Fjw/SuheWQNAKmI/AAAAAAAAAAM/TIbeIgXfwlo/S220/me.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8278927.post-114807098048526631</id><published>2006-05-19T13:33:00.000-07:00</published><updated>2006-05-19T13:43:26.860-07:00</updated><title type='text'>Preparing Websites with Active Content for Announced Browser Changes</title><content type='html'>If you use ActiveX controls like Macromedia Flash on your page, as my brother does on &lt;a href="http://www.otomnekadar.com"&gt;http://www.otomnekadar.com&lt;/a&gt;, with the Internet Explorer updates, the users will not be able to interact with them unless they "Click to Activate" them...&lt;br /&gt;&lt;br /&gt;There is a solution for this on Adobe site :&lt;br /&gt;&lt;a href="http://www.adobe.com/devnet/activecontent/articles/devletter.html"&gt;Adobe site &lt;/a&gt;&lt;br /&gt;&lt;br /&gt;The link seems like it will not be there forever, so here is &lt;br /&gt;&lt;a href="http://download.macromedia.com/pub/developer/activecontent_samples.zip"&gt;the link to the JavaScript files&lt;/a&gt;&lt;br /&gt; you would need...&lt;br /&gt;&lt;br /&gt;Since we struggled to find this, thought might help others&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8278927-114807098048526631?l=sharepointdiary.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.adobe.com/devnet/activecontent/articles/devletter.html' title='Preparing Websites with Active Content for Announced Browser Changes'/><link rel='replies' type='application/atom+xml' href='http://sharepointdiary.blogspot.com/feeds/114807098048526631/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8278927&amp;postID=114807098048526631' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8278927/posts/default/114807098048526631'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8278927/posts/default/114807098048526631'/><link rel='alternate' type='text/html' href='http://sharepointdiary.blogspot.com/2006/05/preparing-websites-with-active-content.html' title='Preparing Websites with Active Content for Announced Browser Changes'/><author><name>bl0gg32</name><uri>http://www.blogger.com/profile/17700012969702551321</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='25' height='32' src='http://4.bp.blogspot.com/_f8Xvkg-_Fjw/SuheWQNAKmI/AAAAAAAAAAM/TIbeIgXfwlo/S220/me.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8278927.post-114793930269474680</id><published>2006-05-18T01:01:00.001-07:00</published><updated>2006-05-19T06:10:09.346-07:00</updated><title type='text'>Business Data Catalog in Sharepoint 2007</title><content type='html'>This was something I was tryingto do with data connections, and dataviews in FrontPage.&lt;br /&gt;&lt;br /&gt;How cool is this... &lt;br /&gt;&lt;br /&gt;&lt;a href="http://blogs.msdn.com/sharepoint/archive/2006/04/18/578194.aspx"&gt;Microsoft SharePoint Products and Technologies Team Blog : Business Data Catalog&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8278927-114793930269474680?l=sharepointdiary.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://blogs.msdn.com/sharepoint/archive/2006/04/18/578194.aspx' title='Business Data Catalog in Sharepoint 2007'/><link rel='replies' type='application/atom+xml' href='http://sharepointdiary.blogspot.com/feeds/114793930269474680/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8278927&amp;postID=114793930269474680' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8278927/posts/default/114793930269474680'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8278927/posts/default/114793930269474680'/><link rel='alternate' type='text/html' href='http://sharepointdiary.blogspot.com/2006/05/business-data-catalog-in-sharepoint_18.html' title='Business Data Catalog in Sharepoint 2007'/><author><name>bl0gg32</name><uri>http://www.blogger.com/profile/17700012969702551321</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='25' height='32' src='http://4.bp.blogspot.com/_f8Xvkg-_Fjw/SuheWQNAKmI/AAAAAAAAAAM/TIbeIgXfwlo/S220/me.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8278927.post-114786695095828476</id><published>2006-05-17T04:55:00.000-07:00</published><updated>2006-05-17T04:55:51.053-07:00</updated><title type='text'>Microsoft SharePoint 2007 &gt; Rolling up information in SharePoint Sites</title><content type='html'>Here are two long-waited parts in the new version, that answers "How can I see all my documents in a gazillion workspaces?", Well, not gazillion :) , but if you have a handful, that would work: &lt;br /&gt;&lt;br /&gt;&lt;a href="http://blogs.msdn.com/sharepoint/archive/2006/03/10/548964.aspx"&gt;Microsoft SharePoint Products and Technologies Team Blog : Rolling up information in SharePoint Sites&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Delighted to see this coming up. &lt;br /&gt;&lt;br /&gt;I need to check if it is possible to roll them up vertically in one single list, lol, and yes, without touching the database ;)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8278927-114786695095828476?l=sharepointdiary.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://blogs.msdn.com/sharepoint/archive/2006/03/10/548964.aspx' title='Microsoft SharePoint 2007 &gt; Rolling up information in SharePoint Sites'/><link rel='replies' type='application/atom+xml' href='http://sharepointdiary.blogspot.com/feeds/114786695095828476/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8278927&amp;postID=114786695095828476' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8278927/posts/default/114786695095828476'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8278927/posts/default/114786695095828476'/><link rel='alternate' type='text/html' href='http://sharepointdiary.blogspot.com/2006/05/microsoft-sharepoint-2007-rolling-up.html' title='Microsoft SharePoint 2007 &gt; Rolling up information in SharePoint Sites'/><author><name>bl0gg32</name><uri>http://www.blogger.com/profile/17700012969702551321</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='25' height='32' src='http://4.bp.blogspot.com/_f8Xvkg-_Fjw/SuheWQNAKmI/AAAAAAAAAAM/TIbeIgXfwlo/S220/me.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8278927.post-114786290536564087</id><published>2006-05-17T03:48:00.000-07:00</published><updated>2006-05-17T03:48:25.410-07:00</updated><title type='text'>FitzBlog : Please Stay Out Of The Database!!!</title><content type='html'>I am a Sharepoint Object Model fan...&lt;br /&gt;&lt;br /&gt;I find it very well designed, and thought. &lt;br /&gt;&lt;br /&gt;A little old posting, but worth to check:&lt;br /&gt;&lt;a href="http://blogs.msdn.com/mikefitz/archive/2005/04/01/404802.aspx?CommentPosted=true#commentmessagecommentmessage"&gt;FitzBlog : Please Stay Out Of The Database!!!&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Even I touched the database "sparingly" in crisis cases, like for version upgrade after a disaster, I agree with most of the points there. The fact that there is a caching layer between sharepoint and the database makes it even riskier.&lt;br /&gt;&lt;br /&gt;However, I also think that, ideally, for an enterprise product, it should either be NOT possible at all, or not be an issue. SQL server is capable of handling locks, isn't it?&lt;br /&gt;&lt;br /&gt;I posted my comments there, I was wondering what would be the best way to determine weather a 3rd party web part uses direct database approach...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8278927-114786290536564087?l=sharepointdiary.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://blogs.msdn.com/mikefitz/archive/2005/04/01/404802.aspx?CommentPosted=true#commentmessagecommentmessage' title='FitzBlog : Please Stay Out Of The Database!!!'/><link rel='replies' type='application/atom+xml' href='http://sharepointdiary.blogspot.com/feeds/114786290536564087/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8278927&amp;postID=114786290536564087' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8278927/posts/default/114786290536564087'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8278927/posts/default/114786290536564087'/><link rel='alternate' type='text/html' href='http://sharepointdiary.blogspot.com/2006/05/fitzblog-please-stay-out-of-database.html' title='FitzBlog : Please Stay Out Of The Database!!!'/><author><name>bl0gg32</name><uri>http://www.blogger.com/profile/17700012969702551321</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='25' height='32' src='http://4.bp.blogspot.com/_f8Xvkg-_Fjw/SuheWQNAKmI/AAAAAAAAAAM/TIbeIgXfwlo/S220/me.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8278927.post-114726051845799290</id><published>2006-05-10T04:27:00.000-07:00</published><updated>2006-05-10T04:28:38.466-07:00</updated><title type='text'>Introduction to Upcoming SharePoint Products and Technologies</title><content type='html'>Hi, &lt;br /&gt;&lt;br /&gt;Mike Fitzmaurice gives an overview of the technologies that will release within Microsoft Windows SharePoint Services (version 3) and Microsoft Office SharePoint Server 2007, with an eye toward pointing out areas with specific developer opportunities. &lt;br /&gt;&lt;br /&gt;If you are involved in, or thinking about getting involved, you must see this...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8278927-114726051845799290?l=sharepointdiary.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://msdn.microsoft.com/msdntv/episode.aspx?xml=episodes/en/20060406SharePointMF/manifest.xml' title='Introduction to Upcoming SharePoint Products and Technologies'/><link rel='replies' type='application/atom+xml' href='http://sharepointdiary.blogspot.com/feeds/114726051845799290/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8278927&amp;postID=114726051845799290' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8278927/posts/default/114726051845799290'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8278927/posts/default/114726051845799290'/><link rel='alternate' type='text/html' href='http://sharepointdiary.blogspot.com/2006/05/introduction-to-upcoming-sharepoint.html' title='Introduction to Upcoming SharePoint Products and Technologies'/><author><name>bl0gg32</name><uri>http://www.blogger.com/profile/17700012969702551321</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='25' height='32' src='http://4.bp.blogspot.com/_f8Xvkg-_Fjw/SuheWQNAKmI/AAAAAAAAAAM/TIbeIgXfwlo/S220/me.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8278927.post-114706462189025571</id><published>2006-05-07T22:03:00.000-07:00</published><updated>2006-05-07T22:03:41.933-07:00</updated><title type='text'>What's Coming in WSS "v3.0"</title><content type='html'>&lt;a href="http://www.sharepointblogs.com/dustin/articles/5235.aspx"&gt;What's Coming in WSS "v3.0"&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;A very cool list compiled by Gene Kraybill, and posted on Dustin Miller's blog...&lt;br /&gt;&lt;br /&gt;Some links are broken, but still valuable information out there...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8278927-114706462189025571?l=sharepointdiary.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.sharepointblogs.com/dustin/articles/5235.aspx' title='What&apos;s Coming in WSS &quot;v3.0&quot;'/><link rel='replies' type='application/atom+xml' href='http://sharepointdiary.blogspot.com/feeds/114706462189025571/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8278927&amp;postID=114706462189025571' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8278927/posts/default/114706462189025571'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8278927/posts/default/114706462189025571'/><link rel='alternate' type='text/html' href='http://sharepointdiary.blogspot.com/2006/05/whats-coming-in-wss-v30.html' title='What&apos;s Coming in WSS &quot;v3.0&quot;'/><author><name>bl0gg32</name><uri>http://www.blogger.com/profile/17700012969702551321</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='25' height='32' src='http://4.bp.blogspot.com/_f8Xvkg-_Fjw/SuheWQNAKmI/AAAAAAAAAAM/TIbeIgXfwlo/S220/me.JPG'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8278927.post-114694657570261438</id><published>2006-05-06T13:05:00.000-07:00</published><updated>2006-05-06T13:16:15.743-07:00</updated><title type='text'>Sharepoint Bloggers</title><content type='html'>I have asked, and was accepted to &lt;a href="http://www.sharepointblogs.com/"&gt;http://www.sharepointblogs.com/&lt;/a&gt;, which is a more specialized blog for sharepoint community.&lt;br /&gt;&lt;br /&gt;At this time, I will keep posting the items there, and refer to it here... &lt;br /&gt;&lt;br /&gt;Duray AKAR&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8278927-114694657570261438?l=sharepointdiary.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.sharepointblogs.com/sharepointdiary' title='Sharepoint Bloggers'/><link rel='replies' type='application/atom+xml' href='http://sharepointdiary.blogspot.com/feeds/114694657570261438/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8278927&amp;postID=114694657570261438' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8278927/posts/default/114694657570261438'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8278927/posts/default/114694657570261438'/><link rel='alternate' type='text/html' href='http://sharepointdiary.blogspot.com/2006/05/sharepoint-bloggers.html' title='Sharepoint Bloggers'/><author><name>bl0gg32</name><uri>http://www.blogger.com/profile/17700012969702551321</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='25' height='32' src='http://4.bp.blogspot.com/_f8Xvkg-_Fjw/SuheWQNAKmI/AAAAAAAAAAM/TIbeIgXfwlo/S220/me.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8278927.post-114681623492822346</id><published>2006-05-05T01:03:00.000-07:00</published><updated>2006-12-01T14:43:02.976-08:00</updated><title type='text'>Windows sharepoint services site directory</title><content type='html'>There will be a site diretory in the upcoming version in WSS, but I think it is one of the biggesst whoos in the WSS2.0, that there is no site directory...&lt;br /&gt;&lt;br /&gt;Sharepoint Portal Server has a sophisticated one, but WSS lacks a built in site directory... &lt;br /&gt;&lt;br /&gt;So I developed my own webpart:&lt;br /&gt;&lt;img src="http://www.adamelek.com/images/SiteDirectory.jpg" /&gt;&lt;br /&gt;&lt;br /&gt;Displays the site hierarchy for the current user, points out the current site, shows the siblings, sister sites, and parent site...&lt;br /&gt;&lt;br /&gt;Pretty simple, isn't it ?&lt;br /&gt;&lt;br /&gt;Can share the code or CAB if anyone is interested.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8278927-114681623492822346?l=sharepointdiary.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sharepointdiary.blogspot.com/feeds/114681623492822346/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8278927&amp;postID=114681623492822346' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8278927/posts/default/114681623492822346'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8278927/posts/default/114681623492822346'/><link rel='alternate' type='text/html' href='http://sharepointdiary.blogspot.com/2006/05/windows-sharepoint-services-site.html' title='Windows sharepoint services site directory'/><author><name>bl0gg32</name><uri>http://www.blogger.com/profile/17700012969702551321</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='25' height='32' src='http://4.bp.blogspot.com/_f8Xvkg-_Fjw/SuheWQNAKmI/AAAAAAAAAAM/TIbeIgXfwlo/S220/me.JPG'/></author><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8278927.post-114681560776518538</id><published>2006-05-05T00:53:00.000-07:00</published><updated>2006-05-05T00:53:27.766-07:00</updated><title type='text'>SharePoint List of Bloggers</title><content type='html'>Mark Kruger compiled the most inclusive &lt;a href="http://www.sharepointblogs.com/mkruger/archive/2005/02/15/SharePointBlogs.aspx"&gt;SharePoint List of Bloggers&lt;/a&gt; I have came across...&lt;br /&gt;&lt;br /&gt;I asked to be in :) maybe he will include my blog there ...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8278927-114681560776518538?l=sharepointdiary.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sharepointdiary.blogspot.com/feeds/114681560776518538/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8278927&amp;postID=114681560776518538' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8278927/posts/default/114681560776518538'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8278927/posts/default/114681560776518538'/><link rel='alternate' type='text/html' href='http://sharepointdiary.blogspot.com/2006/05/sharepoint-list-of-bloggers.html' title='SharePoint List of Bloggers'/><author><name>bl0gg32</name><uri>http://www.blogger.com/profile/17700012969702551321</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='25' height='32' src='http://4.bp.blogspot.com/_f8Xvkg-_Fjw/SuheWQNAKmI/AAAAAAAAAAM/TIbeIgXfwlo/S220/me.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8278927.post-114681546053186289</id><published>2006-05-05T00:51:00.000-07:00</published><updated>2006-05-05T00:51:00.573-07:00</updated><title type='text'>Moving data between workspaces</title><content type='html'>Posted this on sharepoint university:&lt;br /&gt;&lt;a href="http://www.sharepointu.com/forums/m_41264/mpage_1/key_//tm.htm#41264"&gt;Moving data between workspaces&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;If I get some interest, I will share the code to do it ...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8278927-114681546053186289?l=sharepointdiary.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sharepointdiary.blogspot.com/feeds/114681546053186289/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8278927&amp;postID=114681546053186289' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8278927/posts/default/114681546053186289'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8278927/posts/default/114681546053186289'/><link rel='alternate' type='text/html' href='http://sharepointdiary.blogspot.com/2006/05/moving-data-between-workspaces.html' title='Moving data between workspaces'/><author><name>bl0gg32</name><uri>http://www.blogger.com/profile/17700012969702551321</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='25' height='32' src='http://4.bp.blogspot.com/_f8Xvkg-_Fjw/SuheWQNAKmI/AAAAAAAAAAM/TIbeIgXfwlo/S220/me.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8278927.post-114669560128514983</id><published>2006-05-03T15:07:00.000-07:00</published><updated>2006-05-03T15:34:21.103-07:00</updated><title type='text'>Microsoft CRM 3.0</title><content type='html'>I attended a CIO technical event in Ft Lauderdale, and learned about the new version of &lt;a href="http://www.microsoft.com/dynamics/crm/default.mspx"&gt;Microsoft CRM&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;It has gone far beyond since version 1.2.&lt;br /&gt;&lt;br /&gt;I am exploring my options on how to get it implemented in my work place...&lt;br /&gt;hopefully it would integrate a lot of separate pieces that we have, and become the boiler plate for all the applications we use. We are a "service oriented" company, so we should fit well in the target market for the product.&lt;br /&gt;&lt;br /&gt;10 things that I like most about it is:&lt;br /&gt;&lt;br /&gt;1) Integrated into Outlook&lt;br /&gt;2) Actually looks and feels like OUTLOOK, not like a monster living in there&lt;br /&gt;3) Has online / offline as well as mobile capabilities, thanks to Outlook&lt;br /&gt;4) Utilizes SQL Reporting Services&lt;br /&gt;5) Has a SQL Server back-end, UNLIKE Outlook&lt;br /&gt;6) Can import/export data from your existing CRM systems&lt;br /&gt;7) Can host your existing .Net assemblies&lt;br /&gt;8) Has a &lt;u&gt;REALLY&lt;/u&gt; VERY SIMPLE and at the same time FLEXIBLE workflow implementation&lt;br /&gt;9) Uses ENTITIES, which are CUSTOMIZABLE, and &lt;u&gt;RELATIONAL&lt;/u&gt;&lt;br /&gt;10) Integrates with Sharepoint &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Things that I did NOT like about it :&lt;br /&gt;&lt;br /&gt;1) Try to get a pricing ! I mean how complicated can that be? Is it worth NOT publishing the price online? Is it even more complicated than SQL server pricing ? :)&lt;br /&gt;2) &lt;a href="http://mscrm.demoservers.com/"&gt;Demo labs &lt;/a&gt;are 30 minutes. It takes 5 minutes to setup the environment, so you got a FULL 25 MINUTES to play with it :)&lt;br /&gt;&lt;br /&gt;MSDN and TechNET labs are 90 minutes, so why this one wouldn't be ? I don't know.&lt;br /&gt;&lt;br /&gt;Hopefully I will learn a lot more know about it shortly.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8278927-114669560128514983?l=sharepointdiary.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sharepointdiary.blogspot.com/feeds/114669560128514983/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8278927&amp;postID=114669560128514983' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8278927/posts/default/114669560128514983'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8278927/posts/default/114669560128514983'/><link rel='alternate' type='text/html' href='http://sharepointdiary.blogspot.com/2006/05/microsoft-crm-30.html' title='Microsoft CRM 3.0'/><author><name>bl0gg32</name><uri>http://www.blogger.com/profile/17700012969702551321</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='25' height='32' src='http://4.bp.blogspot.com/_f8Xvkg-_Fjw/SuheWQNAKmI/AAAAAAAAAAM/TIbeIgXfwlo/S220/me.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8278927.post-114619111162441291</id><published>2006-04-27T19:19:00.000-07:00</published><updated>2006-04-27T19:26:41.903-07:00</updated><title type='text'>Kudos to MS support</title><content type='html'>I was searching for more on Sharepoint 3.0 , and found out that the "click for more" link is broken on MS site... I sent a feedback email.&lt;br /&gt;&lt;br /&gt;Here is the reply I got the next day :&lt;br /&gt;'&lt;br /&gt;Hello Duray,&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;Check out this webcast for a preview of what’s to come in Windows SharePoint Services 3.0 -- &lt;a href="http://msdn.microsoft.com/msdntv/episode.aspx?xml=episodes/en/20060406sharepointmf/manifest.xml" target="_blank"&gt;http://msdn.microsoft.com/msdntv/episode.aspx?xml=episodes/en/20060406sharepointmf/manifest.xml&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;The good news is that Windows SharePoint Services is going to have its own Developer Center on MSDN, where we’ll be publishing content for the next release. You might want to check out Mike Fitzmaurice’s blog at &lt;a href="http://blogs.msdn.com/mikefitz/default.aspx" target="_blank"&gt;http://blogs.msdn.com/mikefitz/default.aspx &lt;/a&gt;for news of when the new developer center is online. &lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;In the meantime, there’s quite a bit of discussion in the community; for example, this blog entry gives a brief overview of some of the new features. &lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.sharepointblogs.com/dustin/articles/5235.aspx" target="_blank"&gt;http://www.sharepointblogs.com/dustin/articles/5235.aspx&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;'&lt;br /&gt;&lt;br /&gt;Recently I got a personal reply for each an every documentation feedback, site feedback, broken link reports etc. I sent to Microsoft in a timely manner. I also got 3 hotfixes for Visual Studio Professional 2005 through 1 800 Microsoft.&lt;br /&gt;&lt;br /&gt;Hey, I don't work for MS, but I must say I am one happy customer...&lt;br /&gt;&lt;br /&gt;Kudos&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8278927-114619111162441291?l=sharepointdiary.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sharepointdiary.blogspot.com/feeds/114619111162441291/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8278927&amp;postID=114619111162441291' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8278927/posts/default/114619111162441291'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8278927/posts/default/114619111162441291'/><link rel='alternate' type='text/html' href='http://sharepointdiary.blogspot.com/2006/04/kudos-to-ms-support.html' title='Kudos to MS support'/><author><name>bl0gg32</name><uri>http://www.blogger.com/profile/17700012969702551321</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='25' height='32' src='http://4.bp.blogspot.com/_f8Xvkg-_Fjw/SuheWQNAKmI/AAAAAAAAAAM/TIbeIgXfwlo/S220/me.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8278927.post-114606860967980485</id><published>2006-04-26T09:21:00.000-07:00</published><updated>2006-04-26T09:23:29.693-07:00</updated><title type='text'>Sharepoint 3.0</title><content type='html'>Yesterday, I got my first views of sharepoint 3.0, and the asp.net 2.0 integration. Impressive. &lt;br /&gt;&lt;br /&gt;Today, I watched it on MSDN TV. A true JAW DROPPER.&lt;br /&gt;&lt;br /&gt;Trying to get my hands on the BETA&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8278927-114606860967980485?l=sharepointdiary.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sharepointdiary.blogspot.com/feeds/114606860967980485/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8278927&amp;postID=114606860967980485' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8278927/posts/default/114606860967980485'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8278927/posts/default/114606860967980485'/><link rel='alternate' type='text/html' href='http://sharepointdiary.blogspot.com/2006/04/sharepoint-30.html' title='Sharepoint 3.0'/><author><name>bl0gg32</name><uri>http://www.blogger.com/profile/17700012969702551321</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='25' height='32' src='http://4.bp.blogspot.com/_f8Xvkg-_Fjw/SuheWQNAKmI/AAAAAAAAAAM/TIbeIgXfwlo/S220/me.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8278927.post-114261550673260296</id><published>2006-03-17T09:05:00.000-08:00</published><updated>2006-03-17T09:11:46.746-08:00</updated><title type='text'>A winforms datetimepicker with Null binding support</title><content type='html'>The DateTimePicker in winforms 2.0 (and the previous versions) does not support null binding.&lt;br /&gt;&lt;br /&gt;Using generics and a few lines of code, I created my own bindable control.&lt;br /&gt;&lt;br /&gt;Here it is:&lt;br /&gt;&lt;br /&gt;  &lt;br /&gt;  public class DateTimePickerNullable: System.Windows.Forms.DateTimePicker, INotifyPropertyChanged&lt;br /&gt;    {&lt;br /&gt;        public DateTimePickerNullable()&lt;br /&gt;            : base()&lt;br /&gt;        {&lt;br /&gt;            ShowCheckBox = true;&lt;br /&gt;        }&lt;br /&gt;&lt;br /&gt;        [Bindable(true)] &lt;br /&gt;        public Nullable&lt;DateTime&gt; BindableValue&lt;br /&gt;        {&lt;br /&gt;            get &lt;br /&gt;            {&lt;br /&gt;                if (Checked)&lt;br /&gt;                {&lt;br /&gt;                    return Value;&lt;br /&gt;                }&lt;br /&gt;                else &lt;br /&gt;                {&lt;br /&gt;                    return null;&lt;br /&gt;                }&lt;br /&gt;            }&lt;br /&gt;            set &lt;br /&gt;            {&lt;br /&gt;                if (value.HasValue &amp;&amp; value.Value &gt; DateTime.MinValue)&lt;br /&gt;                {&lt;br /&gt;                    this.Checked = true;&lt;br /&gt;                }&lt;br /&gt;                else &lt;br /&gt;                {&lt;br /&gt;                    this.Checked = false;&lt;br /&gt;                }&lt;br /&gt;            }&lt;br /&gt;        }&lt;br /&gt;&lt;br /&gt;        public new bool Checked &lt;br /&gt;        {&lt;br /&gt;            get { return base.Checked; }&lt;br /&gt;            set &lt;br /&gt;            {&lt;br /&gt;                base.Checked = value;&lt;br /&gt;                OnPropertyChanged("BindableValue"); &lt;br /&gt;            }&lt;br /&gt;        }&lt;br /&gt;&lt;br /&gt;        protected override void OnCloseUp(EventArgs eventargs)&lt;br /&gt;        {&lt;br /&gt;            base.OnCloseUp(eventargs);&lt;br /&gt;            OnPropertyChanged("BindableValue"); &lt;br /&gt;        }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;        #region INotifyPropertyChanged Members&lt;br /&gt;&lt;br /&gt;        public event PropertyChangedEventHandler PropertyChanged;&lt;br /&gt;&lt;br /&gt;        protected virtual void OnPropertyChanged(string propertyName) &lt;br /&gt;        {&lt;br /&gt;            if (PropertyChanged!=null)&lt;br /&gt;            {&lt;br /&gt;                PropertyChanged(this, new PropertyChangedEventArgs(propertyName));  &lt;br /&gt;            }&lt;br /&gt;        }&lt;br /&gt;&lt;br /&gt;        #endregion&lt;br /&gt;    }&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8278927-114261550673260296?l=sharepointdiary.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sharepointdiary.blogspot.com/feeds/114261550673260296/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8278927&amp;postID=114261550673260296' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8278927/posts/default/114261550673260296'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8278927/posts/default/114261550673260296'/><link rel='alternate' type='text/html' href='http://sharepointdiary.blogspot.com/2006/03/winforms-datetimepicker-with-null.html' title='A winforms datetimepicker with Null binding support'/><author><name>bl0gg32</name><uri>http://www.blogger.com/profile/17700012969702551321</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='25' height='32' src='http://4.bp.blogspot.com/_f8Xvkg-_Fjw/SuheWQNAKmI/AAAAAAAAAAM/TIbeIgXfwlo/S220/me.JPG'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8278927.post-113932793312491283</id><published>2006-02-07T07:57:00.000-08:00</published><updated>2006-02-07T07:58:53.136-08:00</updated><title type='text'>Sharepoint Web Part Library Project Template for Visual Studio 2005</title><content type='html'>WSS Web Part Library Project Template for VS2005 is posted on :&lt;br /&gt;&lt;br /&gt;&lt;a href="http://dataerror.blogspot.com/2006/01/wss-web-part-library-project-template.html"&gt; Sharepoint Web Part Tempate for VS2005&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8278927-113932793312491283?l=sharepointdiary.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sharepointdiary.blogspot.com/feeds/113932793312491283/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8278927&amp;postID=113932793312491283' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8278927/posts/default/113932793312491283'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8278927/posts/default/113932793312491283'/><link rel='alternate' type='text/html' href='http://sharepointdiary.blogspot.com/2006/02/sharepoint-web-part-library-project.html' title='Sharepoint Web Part Library Project Template for Visual Studio 2005'/><author><name>bl0gg32</name><uri>http://www.blogger.com/profile/17700012969702551321</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='25' height='32' src='http://4.bp.blogspot.com/_f8Xvkg-_Fjw/SuheWQNAKmI/AAAAAAAAAAM/TIbeIgXfwlo/S220/me.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8278927.post-112542741541518588</id><published>2005-08-30T11:31:00.000-07:00</published><updated>2007-02-17T21:37:34.043-08:00</updated><title type='text'>A disaster recovery movie...</title><content type='html'>Woked up alive from one of my worst sharepoint nightmares ever...&lt;br /&gt;&lt;br /&gt;Thank god it is over. Took me 3 days in research trial-error.&lt;br /&gt;&lt;br /&gt;My Sharepoint server burned (literally).The HDD's were recovered, so I was able to get the mdf files, thanks to our system admin. What would we do without him ?&lt;br /&gt;&lt;br /&gt;I attached the mdf's to a new SQL server database, set up a new WSS site (SP1), and tried to use my existing content and database server (as every logical IT person would do).&lt;br /&gt;&lt;br /&gt;But life was never that easy... Ever. &lt;br /&gt;&lt;br /&gt;"The database schema is too old to perform this operation in this SharePoint cluster.  Please upgrade the database and try again. " Said the holy WSS...&lt;br /&gt;&lt;br /&gt;So, as a logical IT person, I tried to find the nice MS WSS utility to upgrade my database :) lol One would think that would exist, right ? Think again... &lt;br /&gt;&lt;br /&gt;Basically I was trying to use both the content and the configuration database files  (mdf files) of WSS on a virtual server "MyWSS" that used to run on  a physical server called "MyServer", on a new physical server "MyServer2" with the same virtual server name... Of course, the physical database server needed to be changed as well.&lt;br /&gt;&lt;br /&gt;Besides the version conflicts, it sounded like a disaster recovery that is almost identical to "the disaster recovery for the company WSS on Small Business Server", and actually the resources on that subject helped me quite a bit.&lt;br /&gt;&lt;br /&gt;I ended up exploring the Configuration database tables with MsAccess, and replacing version numbers, server names, IP addresses, modifying the references in XML property columns e.t.c. directly in the database. Brutally... &lt;br /&gt;&lt;br /&gt;:)&lt;br /&gt;&lt;br /&gt;But worked.&lt;br /&gt;&lt;br /&gt;I got it up and running except for a few image files... It is a shame that sharepoint images, templates and WebParts (Yes, they seem to reside in the database, but it didn't work, i had to re-install them) are still in the file system...&lt;br /&gt;&lt;br /&gt;OH, and by the way, I did compare the database structure of both versions...&lt;br /&gt;The only difference was that : In "Docs" table, a calculated "Extension" column was added in version 6.0.2.6411... So much for 3 days, a stupid "Alter table" statement should do the job...&lt;br /&gt;&lt;br /&gt;What I did in a little more detail is:&lt;br /&gt;&lt;br /&gt;Our system admin upgraded the WSS with the latest and greatest from MS.&lt;br /&gt;I used a new configuration database, extended a new virtual server with the same name as my poor old blown WSS with a new content database...&lt;br /&gt;I explored my old configuration database in my good ol' friend MsAccess.&lt;br /&gt;I added my new SQL server to the servers table.&lt;br /&gt;I replaced the serverID in the services table to reference the new SQL server.&lt;br /&gt;I replaced my old physical server name to my new server name in the configuration database.&lt;br /&gt;Then I changed my configuration database to my old (and purified :)) database in Central edministration.&lt;br /&gt;IISreset&lt;br /&gt;Expected it to work huh ? :) not yet...&lt;br /&gt;Removed (without removing the content database) and re-extended my virtual server.&lt;br /&gt;IISreset.&lt;br /&gt;I got it up and running without the webparts at that point.&lt;br /&gt;Then installed my web part installation cabinet files. (What an organized operson I am, I had all of them in one single folder)&lt;br /&gt;A last IISReset, just in case, and after that fully functional, except that company logo and my "trans.gif" images missing.&lt;br /&gt;&lt;br /&gt;Do not try unless you have to, and if you do so, do it at your own risk...&lt;br /&gt;&lt;br /&gt;See you on another adventure.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8278927-112542741541518588?l=sharepointdiary.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sharepointdiary.blogspot.com/feeds/112542741541518588/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8278927&amp;postID=112542741541518588' title='9 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8278927/posts/default/112542741541518588'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8278927/posts/default/112542741541518588'/><link rel='alternate' type='text/html' href='http://sharepointdiary.blogspot.com/2005/08/disaster-recovery-movie.html' title='A disaster recovery movie...'/><author><name>bl0gg32</name><uri>http://www.blogger.com/profile/17700012969702551321</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='25' height='32' src='http://4.bp.blogspot.com/_f8Xvkg-_Fjw/SuheWQNAKmI/AAAAAAAAAAM/TIbeIgXfwlo/S220/me.JPG'/></author><thr:total>9</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8278927.post-111401310464927783</id><published>2005-04-20T09:00:00.000-07:00</published><updated>2005-04-20T09:05:04.650-07:00</updated><title type='text'>Intra Site ListView</title><content type='html'>I need a webpart that can display a "listview" from any selected site that you have access to...&lt;br /&gt;&lt;br /&gt;on research for an existing one, but rolled up my own sleeves as well..&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8278927-111401310464927783?l=sharepointdiary.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sharepointdiary.blogspot.com/feeds/111401310464927783/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8278927&amp;postID=111401310464927783' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8278927/posts/default/111401310464927783'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8278927/posts/default/111401310464927783'/><link rel='alternate' type='text/html' href='http://sharepointdiary.blogspot.com/2005/04/intra-site-listview.html' title='Intra Site ListView'/><author><name>bl0gg32</name><uri>http://www.blogger.com/profile/17700012969702551321</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='25' height='32' src='http://4.bp.blogspot.com/_f8Xvkg-_Fjw/SuheWQNAKmI/AAAAAAAAAAM/TIbeIgXfwlo/S220/me.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8278927.post-109484534797741117</id><published>2004-09-10T13:41:00.000-07:00</published><updated>2004-09-10T12:42:27.976-07:00</updated><title type='text'>Blog world</title><content type='html'>Time to join the blogging world.&lt;br /&gt;&lt;br /&gt;I will share my sharepoint adventures here.&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8278927-109484534797741117?l=sharepointdiary.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sharepointdiary.blogspot.com/feeds/109484534797741117/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8278927&amp;postID=109484534797741117' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8278927/posts/default/109484534797741117'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8278927/posts/default/109484534797741117'/><link rel='alternate' type='text/html' href='http://sharepointdiary.blogspot.com/2004/09/blog-world.html' title='Blog world'/><author><name>bl0gg32</name><uri>http://www.blogger.com/profile/17700012969702551321</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='25' height='32' src='http://4.bp.blogspot.com/_f8Xvkg-_Fjw/SuheWQNAKmI/AAAAAAAAAAM/TIbeIgXfwlo/S220/me.JPG'/></author><thr:total>0</thr:total></entry></feed>
