﻿<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/">
  <channel>
    <title>Sharepoint And More</title>
    <description>Blogs Sharepoint, WSS, MOSS,Sharepoint Designer and Webparts</description>
    <link>http://web.iotap.com/Blogs/tabid/277/BlogId/6/Default.aspx</link>
    <language>en-US</language>
    <webMaster>kkumar@iotap.com</webMaster>
    <pubDate>Fri, 12 Mar 2010 00:16:52 GMT</pubDate>
    <lastBuildDate>Fri, 12 Mar 2010 00:16:52 GMT</lastBuildDate>
    <docs>http://backend.userland.com/rss</docs>
    <generator>Blog RSS Generator Version 3.5.1.19887</generator>
    <item>
      <title>Best Practice Analyzer for Windows SharePoint service 3.0 and MOSS 2007</title>
      <description>&lt;p&gt;&lt;strong&gt;What Best Practice Analyzer for WSS/MOSS can do?&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;The Microsoft Best Practices Analyzer for Microsoft Windows SharePoint Services 3.0 and the 2007 Microsoft Office System creates detailed reports to help administrators achieve greater performance, scalability, and uptime.&lt;/p&gt;  &lt;p&gt; &lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Install Best Practice Analyzer for WSS and MOSS 2007:&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;1. Download the best practice analyzer from the following URL.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=cb944b27-9d6b-4a1f-b3e1-778efda07df8&amp;displaylang=en"&gt;http://www.microsoft.com/downloads/details.aspx?FamilyID=cb944b27-9d6b-4a1f-b3e1-778efda07df8&amp;displaylang=en&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;2. Create the BPA folder on C drive.&lt;/p&gt;  &lt;p&gt;3. Now run the downloaded file that Extracted to the C:\BPA folder.&lt;/p&gt;  &lt;p&gt;Now we are going to execute the best practice analyzer on WSS/MOSS using command.&lt;/p&gt;  &lt;p&gt;4. Start -&gt; RUN-&gt; CMD and type the following command.&lt;/p&gt;  &lt;p&gt;Cd C:\BPA&lt;/p&gt;  &lt;p&gt;Where C:\BPA is the location that contains the Microsoft Best Practices Analyzer for Microsoft Windows SharePoint Services 3.0 and the 2007 Microsoft Office System. (If the Microsoft Best Practices Analyzer for Microsoft Windows SharePoint Services 3.0 and the 2007 Microsoft Office System is in a different location, replace C:\BPA with that location.&lt;/p&gt;  &lt;p&gt;5. Type the following command, and then press ENTER:   &lt;br /&gt;&lt;b&gt;sharepointbpa.exe -cmd analyze -substitutions SERVER_NAME CentralAdministrationServer&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;where "CentralAdministrationServer" is the server name for your SharePoint Central Administration.   &lt;br /&gt;It is important that SERVER_NAME is included in the parameters capitalized and that CentralAdministratorServer is replaced with the server name that is running SharePoint Central Administration.&lt;/p&gt;  &lt;p&gt;6. After the analysis is complete, open &lt;b&gt;sharepointbpa.report.htm&lt;/b&gt; in a web browser.    &lt;br /&gt;sharepointbpa.report.htm will be in the same location that the Microsoft Best Practices Analyzer for Microsoft Windows SharePoint Services 3.0 and the 2007 Microsoft Office System was installed.&lt;/p&gt;  &lt;p&gt;7. Exit the command. Now on the report html page you will get available Error  on your server and warning message with solution.&lt;/p&gt;  &lt;p&gt;8. Find the Problem and resolve it one by one.&lt;/p&gt;  &lt;p&gt; &lt;/p&gt;  &lt;p&gt; &lt;/p&gt;  &lt;p&gt;Written by&lt;/p&gt;  &lt;p&gt;A.Ramu&lt;/p&gt;</description>
      <link>http://www.iotap.com/Blogs/tabid/277/EntryId/177/Best-Practice-Analyzer-for-Windows-SharePoint-service-3-0-and-MOSS-2007.aspx</link>
      <comments>http://www.iotap.com/Blogs/tabid/277/EntryId/177/Best-Practice-Analyzer-for-Windows-SharePoint-service-3-0-and-MOSS-2007.aspx#Comments</comments>
      <guid isPermaLink="true">http://www.iotap.com/Blogs/tabid/277/EntryId/177/Best-Practice-Analyzer-for-Windows-SharePoint-service-3-0-and-MOSS-2007.aspx</guid>
      <pubDate>Tue, 09 Mar 2010 13:31:13 GMT</pubDate>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://web.iotap.com/DesktopModules/Blog/Trackback.aspx?id=177</trackback:ping>
    </item>
    <item>
      <title>Manage Content Types on New Button</title>
      <description>&lt;p&gt;SharePoint Lists are enabled with multiple content types, because of that we can add items with different type of properties and documents. In advanced, the New Menu displays those Content type available in List as its sub-menu.&lt;/p&gt;  &lt;p align="center"&gt;&lt;a href="http://ktskumar.com/blog/wp-content/uploads/2010/02/image1.png"&gt;&lt;img border="0" alt="image" src="http://ktskumar.com/blog/wp-content/uploads/2010/02/image_thumb1.png" width="265" height="146" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p align="center"&gt;&lt;em&gt;Fig1 Content Types Visible in New Menu&lt;/em&gt;&lt;/p&gt;  &lt;p&gt;So how the SharePoint displays those Content types under New menu and how we can enable and disable those content types under that new Menu.&lt;/p&gt;  &lt;p&gt;So here is the simple snippet to list out the content types enabled in New Menu.&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;SPList list = web.Lists["ListName"];&lt;/p&gt;    &lt;p&gt;IList&lt;SPContentType&gt; ctoFolder = list.RootFolder.UniqueContentTypeOrder; &lt;/p&gt;    &lt;p&gt;foreach (SPContentType ctype in ctoFolder)      &lt;br /&gt;{       &lt;br /&gt;    Console.WriteLine(ctype.Name);       &lt;br /&gt;}&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;UniqueContentTypeOrder of SPFolder member lists out the Content Types visible on New Menu. Now we’ll see the code for removing the ContentType on New menu.&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;SPList list = web.Lists["ListName"]; &lt;/p&gt;    &lt;p&gt;IList&lt;SPContentType&gt; ctoFolder = list.RootFolder.UniqueContentTypeOrder; &lt;/p&gt;    &lt;p&gt;&lt;font color="#008000"&gt;//Code for removing the Content Type sub-menu in New Menu.&lt;/font&gt;&lt;/p&gt;    &lt;p&gt;&lt;font color="#008000"&gt;//Removing the "Test Content Type" menu under New Menu&lt;/font&gt;&lt;/p&gt;    &lt;p&gt;for (int i = ctoFolder.Count – 1; i &gt;= 0; i–)      &lt;br /&gt;{       &lt;br /&gt;    if (ctoFolder[i].Name == "Test Content Type")       &lt;br /&gt;    {       &lt;br /&gt;        ctoFolder.Remove(ctoFolder[i]);                            &lt;br /&gt;    }                        &lt;br /&gt;} &lt;/p&gt;    &lt;p&gt;list.RootFolder.UniqueContentTypeOrder = ctoFolder;      &lt;br /&gt;list.RootFolder.Update();&lt;/p&gt;    &lt;p&gt;&lt;font color="#008000"&gt;//Code for adding the Content type sub-menu under New Menu&lt;/font&gt;&lt;/p&gt;    &lt;p&gt;&lt;font color="#008000"&gt;//Adding the "Test Content type" menu under New Menu&lt;/font&gt;&lt;/p&gt;    &lt;p&gt;SPContentType ctype = list.ContentTypes["Test Content Type"];                                        &lt;br /&gt;ctoFolder.Add(ctype);       &lt;br /&gt;list.RootFolder.Update();&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;The above helps us to enable and disable the Content type on New Button in SharePoint List.&lt;/p&gt;</description>
      <link>http://www.iotap.com/Blogs/tabid/277/EntryId/176/Manage-Content-Types-on-New-Button.aspx</link>
      <comments>http://www.iotap.com/Blogs/tabid/277/EntryId/176/Manage-Content-Types-on-New-Button.aspx#Comments</comments>
      <guid isPermaLink="true">http://www.iotap.com/Blogs/tabid/277/EntryId/176/Manage-Content-Types-on-New-Button.aspx</guid>
      <pubDate>Wed, 03 Mar 2010 04:38:51 GMT</pubDate>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://web.iotap.com/DesktopModules/Blog/Trackback.aspx?id=176</trackback:ping>
    </item>
    <item>
      <title>The SSP Timer Job Distribution List Import Job was not run.Event Id 6641</title>
      <description>&lt;p&gt;if  the user profiles is not updated after you changed users property on the SSP and you get the following error&lt;/p&gt;  &lt;p&gt;log in your SharePoint server 2007&lt;/p&gt;  &lt;p&gt;&lt;a href="http://web.iotap.com/Portals/2/Blog/Files/6/167/WLW-TheSSPTimerJobDistributionLi.EventId6641_9DB8-image_2.png"&gt;&lt;img title="image" style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="300" alt="image" src="/Portals/2/Blog/Files/6/167/WLW-TheSSPTimerJobDistributionLi.EventId6641_9DB8-image_thumb.png" width="310" border="0" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;&lt;strong&gt;then follow the following solutions steps&lt;/strong&gt; &lt;/p&gt;  &lt;p&gt;1. One of Microsoft’s best practices is to make sure that the application pool account for your SSP and your service account for the SSP are the same account.&lt;/p&gt;  &lt;p&gt;2. Make sure to add this account to the backup operator’s local group on all your MOSS servers.&lt;/p&gt;  &lt;p&gt;3. If you are using Kerberos authentication for your web applications make sure you set your service name principle account for you ssp on you MOSS application server. In order to complete this operation you must install Window support tools from your Windows server installation files under support&gt;&gt;tools&gt;&gt;supporttools.msi. Once you have installed the support tools go to start&gt;&gt;All programs&gt;&gt; Windows support tools&gt;&gt; command prompt.   &lt;br /&gt;setspn.exe –A HTTP/name_of_ssp_address domain\appication     &lt;br /&gt;Assume your site address is ssp, your domain is sharePoint, and your application pool account is svc_ssp. Run these commands    &lt;br /&gt;setspn.exe –A HTTP/ssp SharePoint\svc_ssp (Run this Command)    &lt;br /&gt;setspn.exe –A HTTP/ssp.sharepoint.com SharePoint\svc_ssp (Run this command)    &lt;br /&gt;If you are using Kerberos authentication on any of your web applications you must run these commands for the web applications to function properly including your central administration site.&lt;/p&gt;  &lt;p&gt;4. Check your system event logs on your MOSS server for any DCOM errors.  You will notice your DCOM errors are associated with your application pool accounts.  Add these acounts to the IIS WAMREG admin service.  Make sure the accounts have local launch, remote launch, local activation, and remote activation.&lt;/p&gt;  &lt;p&gt;5. Next stop your Office SharePoint Server Search through central administation&gt;&gt; operations&gt;&gt; Services on Server.&lt;/p&gt;  &lt;p&gt;6. Then go to central administration&gt;&gt; operations&gt;&gt; service accounts.  Click on web application pool.  Then under web service choose Windows SharePoint Service Web application.  Next under application pool, choose your Shared Service Provider application pool account.  Under configurable you will notice that it populated your application pool account.  Now re-enter your password and click ok.&lt;/p&gt;  &lt;p&gt;7. Login into all your MOSS servers and run iisreset /noforce.&lt;/p&gt;  &lt;p&gt;8. Go back to central administation&gt;&gt; operations&gt;&gt; Services on Server and restart your Office Server Search.&lt;/p&gt;  &lt;p&gt;9. Then go to central administation&gt;&gt;Application Management&gt;&gt; Manage this Farm's Shared Services.  click the drop down on the default SSP and click edit properties.  In the SSP service credentials enter username and password.  In the index server catagory select your index server and then click ok. Make sure you wait about 5 minutes.&lt;/p&gt;  &lt;p&gt;i hope this should work.&lt;/p&gt;</description>
      <link>http://www.iotap.com/Blogs/tabid/277/EntryId/167/The-SSP-Timer-Job-Distribution-List-Import-Job-was-not-run-Event-Id-6641.aspx</link>
      <comments>http://www.iotap.com/Blogs/tabid/277/EntryId/167/The-SSP-Timer-Job-Distribution-List-Import-Job-was-not-run-Event-Id-6641.aspx#Comments</comments>
      <guid isPermaLink="true">http://www.iotap.com/Blogs/tabid/277/EntryId/167/The-SSP-Timer-Job-Distribution-List-Import-Job-was-not-run-Event-Id-6641.aspx</guid>
      <pubDate>Fri, 22 Jan 2010 05:59:55 GMT</pubDate>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://web.iotap.com/DesktopModules/Blog/Trackback.aspx?id=167</trackback:ping>
    </item>
    <item>
      <title>User Profile synchronization is not working in SharePoint server 2007, Event id 5555</title>
      <description>&lt;p&gt;If the user profile is not synchronizing after you changed the property of the user property on SSP and if you found the following error message in your event log &lt;/p&gt;  &lt;p&gt;&lt;a href="http://web.iotap.com/Portals/2/Blog/Files/6/166/WLW-UserProfilesynchronizationisnotworkingin_D5BE-clip_image002_2.jpg"&gt;&lt;img title="clip_image002" style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="203" alt="clip_image002" src="/Portals/2/Blog/Files/6/166/WLW-UserProfilesynchronizationisnotworkingin_D5BE-clip_image002_thumb.jpg" width="306" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;then follow the following solution steps.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Solution Steps:&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;open the command prompt and run the following command.&lt;/p&gt;  &lt;p&gt;stsadm -o sync -DeleteOldDatabases 0&lt;/p&gt;  &lt;p&gt;then it removing the old data.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://web.iotap.com/Portals/2/Blog/Files/6/166/WLW-UserProfilesynchronizationisnotworkingin_D5BE-result-300x149_2.png"&gt;&lt;img title="result-300x149" style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="123" alt="result-300x149" src="/Portals/2/Blog/Files/6/166/WLW-UserProfilesynchronizationisnotworkingin_D5BE-result-300x149_thumb.png" width="244" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt; &lt;/p&gt;  &lt;p&gt;Now it should work properly.&lt;/p&gt;</description>
      <link>http://www.iotap.com/Blogs/tabid/277/EntryId/166/User-Profile-synchronization-is-not-working-in-SharePoint-server-2007-Event-id-5555.aspx</link>
      <comments>http://www.iotap.com/Blogs/tabid/277/EntryId/166/User-Profile-synchronization-is-not-working-in-SharePoint-server-2007-Event-id-5555.aspx#Comments</comments>
      <guid isPermaLink="true">http://www.iotap.com/Blogs/tabid/277/EntryId/166/User-Profile-synchronization-is-not-working-in-SharePoint-server-2007-Event-id-5555.aspx</guid>
      <pubDate>Thu, 21 Jan 2010 09:58:46 GMT</pubDate>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://web.iotap.com/DesktopModules/Blog/Trackback.aspx?id=166</trackback:ping>
    </item>
    <item>
      <title>Access is denied. Check that the Default Content Access Account has access to this content, or add a crawl rule to crawl this content. Event Id:2436</title>
      <description>&lt;p&gt;If you are getting the below error in event log in your SharePoint server 2007&lt;/p&gt;  &lt;p&gt;&lt;a href="http://web.iotap.com/Portals/2/Blog/Files/6/165/WLW-Accessisdenied.CheckthattheD.EventId2436_EDFC-clip_image0024.jpg"&gt;&lt;img title="clip_image002[4]" style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="206" alt="clip_image002[4]" src="/Portals/2/Blog/Files/6/165/WLW-Accessisdenied.CheckthattheD.EventId2436_EDFC-clip_image0024_thumb.jpg" width="284" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt; &lt;/p&gt;  &lt;p&gt;Then follow the below solution steps&lt;/p&gt;  &lt;p&gt;&lt;b&gt;Method 1: Disable the loopback check&lt;/b&gt;     &lt;br /&gt;1.    Click Start, click Run, type regedit, and then click OK.     &lt;br /&gt;2.    In Registry Editor, locate and then click the following registry key:     &lt;br /&gt;HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa     &lt;br /&gt;3.    Right-click Lsa, point to New, and then click DWORD Value.     &lt;br /&gt;4.    Type DisableLoopbackCheck, and then press ENTER.     &lt;br /&gt;5.    Right-click DisableLoopbackCheck, and then click Modify.     &lt;br /&gt;6.    In the Value data box, type 1, and then click OK.     &lt;br /&gt;7.    Quit Registry Editor, and then restart your computer.     &lt;br /&gt;Method 2:- After I restarted the server I went to the Sharepoint Admin site and started a full crawl. Some seconds later I went to the crawl log and found a warning this time with the following entry:     &lt;br /&gt;&lt;b&gt;Content for this URL is excluded by the server because a no-index attribute.&lt;/b&gt;     &lt;br /&gt;So  "Reset All Crawled Content" and tried the full crawl again. &lt;/p&gt;  &lt;p&gt;Now it should work.&lt;/p&gt;</description>
      <link>http://www.iotap.com/Blogs/tabid/277/EntryId/165/Access-is-denied-Check-that-the-Default-Content-Access-Account-has-access-to-this-content-or-add-a-crawl-rule-to-crawl-this-content-Event-Id-2436.aspx</link>
      <comments>http://www.iotap.com/Blogs/tabid/277/EntryId/165/Access-is-denied-Check-that-the-Default-Content-Access-Account-has-access-to-this-content-or-add-a-crawl-rule-to-crawl-this-content-Event-Id-2436.aspx#Comments</comments>
      <guid isPermaLink="true">http://www.iotap.com/Blogs/tabid/277/EntryId/165/Access-is-denied-Check-that-the-Default-Content-Access-Account-has-access-to-this-content-or-add-a-crawl-rule-to-crawl-this-content-Event-Id-2436.aspx</guid>
      <pubDate>Wed, 20 Jan 2010 11:42:08 GMT</pubDate>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://web.iotap.com/DesktopModules/Blog/Trackback.aspx?id=165</trackback:ping>
    </item>
    <item>
      <title>Scrolling to Today’s date in Sharepoint Gantt Chart</title>
      <description>&lt;p style="margin: 0in 0in 0pt" class="MsoNormal"&gt;This blog explains a workaround for Scrolling to Today’s date in &lt;strong&gt;Sharepoint&lt;/strong&gt; Gantt chart&lt;/p&gt;&lt;a href=http://www.iotap.com/Blogs/tabid/277/EntryId/155/Scrolling-to-Today-rsquo-s-date-in-Sharepoint-Gantt-Chart.aspx&gt;More...&lt;/a&gt;</description>
      <link>http://www.iotap.com/Blogs/tabid/277/EntryId/155/Scrolling-to-Today-rsquo-s-date-in-Sharepoint-Gantt-Chart.aspx</link>
      <comments>http://www.iotap.com/Blogs/tabid/277/EntryId/155/Scrolling-to-Today-rsquo-s-date-in-Sharepoint-Gantt-Chart.aspx#Comments</comments>
      <guid isPermaLink="true">http://www.iotap.com/Blogs/tabid/277/EntryId/155/Scrolling-to-Today-rsquo-s-date-in-Sharepoint-Gantt-Chart.aspx</guid>
      <pubDate>Tue, 24 Nov 2009 14:30:48 GMT</pubDate>
      <slash:comments>5</slash:comments>
      <trackback:ping>http://web.iotap.com/DesktopModules/Blog/Trackback.aspx?id=155</trackback:ping>
    </item>
    <item>
      <title>Configure Twitter Search with Sharepoint and Search Server </title>
      <description>&lt;p&gt;This blog explains the steps in configuring Twitter Search with &lt;strong&gt;Sharepoint&lt;/strong&gt; and Search Server 2008&lt;/p&gt;&lt;a href=http://web.iotap.com/Blogs/tabid/277/EntryId/139/Configure-Twitter-Search-with-Sharepoint-and-Search-Server.aspx&gt;More...&lt;/a&gt;</description>
      <link>http://web.iotap.com/Blogs/tabid/277/EntryId/139/Configure-Twitter-Search-with-Sharepoint-and-Search-Server.aspx</link>
      <comments>http://web.iotap.com/Blogs/tabid/277/EntryId/139/Configure-Twitter-Search-with-Sharepoint-and-Search-Server.aspx#Comments</comments>
      <guid isPermaLink="true">http://web.iotap.com/Blogs/tabid/277/EntryId/139/Configure-Twitter-Search-with-Sharepoint-and-Search-Server.aspx</guid>
      <pubDate>Mon, 16 Nov 2009 12:59:05 GMT</pubDate>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://web.iotap.com/DesktopModules/Blog/Trackback.aspx?id=139</trackback:ping>
    </item>
    <item>
      <title>Move sharepoint site from one domain to another domain</title>
      <description>&lt;p&gt;This blog explains that how to move sharepoint site from one domain to another domain.&lt;/p&gt;&lt;a href=http://www.iotap.com/Blogs/tabid/277/EntryId/136/Move-sharepoint-site-from-one-domain-to-another-domain.aspx&gt;More...&lt;/a&gt;</description>
      <link>http://www.iotap.com/Blogs/tabid/277/EntryId/136/Move-sharepoint-site-from-one-domain-to-another-domain.aspx</link>
      <comments>http://www.iotap.com/Blogs/tabid/277/EntryId/136/Move-sharepoint-site-from-one-domain-to-another-domain.aspx#Comments</comments>
      <guid isPermaLink="true">http://www.iotap.com/Blogs/tabid/277/EntryId/136/Move-sharepoint-site-from-one-domain-to-another-domain.aspx</guid>
      <pubDate>Wed, 11 Nov 2009 13:29:00 GMT</pubDate>
      <slash:comments>2</slash:comments>
      <trackback:ping>http://web.iotap.com/DesktopModules/Blog/Trackback.aspx?id=136</trackback:ping>
    </item>
    <item>
      <title>Creating a Sharepoint sub site from custom template through code</title>
      <description>&lt;p&gt;This blog explains the steps involving in creating a &lt;strong&gt;Sharepoint&lt;/strong&gt; sub site from a custom template by calling Sharepoint web service from .Net code.&lt;/p&gt;&lt;a href=http://www.iotap.com/Blogs/tabid/277/EntryId/125/Creating-a-Sharepoint-sub-site-from-custom-template-through-code.aspx&gt;More...&lt;/a&gt;</description>
      <link>http://www.iotap.com/Blogs/tabid/277/EntryId/125/Creating-a-Sharepoint-sub-site-from-custom-template-through-code.aspx</link>
      <comments>http://www.iotap.com/Blogs/tabid/277/EntryId/125/Creating-a-Sharepoint-sub-site-from-custom-template-through-code.aspx#Comments</comments>
      <guid isPermaLink="true">http://www.iotap.com/Blogs/tabid/277/EntryId/125/Creating-a-Sharepoint-sub-site-from-custom-template-through-code.aspx</guid>
      <pubDate>Thu, 29 Oct 2009 13:58:39 GMT</pubDate>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://web.iotap.com/DesktopModules/Blog/Trackback.aspx?id=125</trackback:ping>
    </item>
    <item>
      <title>Removing Link from People Name in Sharepoint List</title>
      <description>&lt;p&gt;&lt;strong&gt;Sharepoint&lt;/strong&gt; lists can have special type of  column that refers to a person or group. When viewing the list data the person column will display the person name and picture with a  link to the page that displays the user details(userdisp.aspx). Sometimes it would be desirable to prevent users from viewing the user details.  This can be done by using few lines of Jquery script. Following steps explains the steps involved&lt;/p&gt;  &lt;p&gt; &lt;/p&gt;  &lt;p&gt;1. Navigate to the &lt;strong&gt;Sharepoint&lt;/strong&gt; page that displays the list with the people link&lt;/p&gt;  &lt;p&gt;2. The people column will be displayed like the one shown below&lt;/p&gt;  &lt;p&gt; &lt;/p&gt;  &lt;p&gt;&lt;a href="http://web.iotap.com/Portals/2/Blog/Files/6/118/WLW-RemovingLinkfromPeopleNameinSharepointLi_E6A6-image_6.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="Peoples column with link" border="0" alt="Peoples column with link" src="/Portals/2/Blog/Files/6/118/WLW-RemovingLinkfromPeopleNameinSharepointLi_E6A6-image_thumb_2.png" width="244" height="137" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt; &lt;/p&gt;  &lt;p&gt;3.  Add a content editor webpart to the page&lt;/p&gt;  &lt;p&gt; 4. Modify the content editor webpart and go to the source editor and add the below script&lt;/p&gt;  &lt;p&gt; &lt;/p&gt;  &lt;p&gt;&lt;em&gt;&lt;script src="&lt;/em&gt;&lt;em&gt;http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js"&lt;/em&gt;&lt;em&gt; type="text/javascript"&gt;&lt;/script&gt;   &lt;br /&gt;&lt;script&gt;      &lt;br /&gt;$(document).ready(function () {      &lt;br /&gt;    $('a[href*=userdisp.aspx]').each(function(idx, item) {  &lt;br /&gt; $(this).attr({href:location.href+"#",onClick:"return false;"})      &lt;br /&gt;var content = $(this).html();      &lt;br /&gt;$(this).parent().html(content)      &lt;br /&gt;    }); &lt;/em&gt;&lt;/p&gt;  &lt;p&gt;&lt;em&gt;});     &lt;br /&gt;&lt;/script&gt;&lt;/em&gt;&lt;/p&gt;  &lt;p&gt;&lt;em&gt;&lt;/em&gt;  &lt;/p&gt;  &lt;p&gt;5. Now the people column will be displayed like the one shown below&lt;/p&gt;  &lt;p&gt; &lt;/p&gt;  &lt;p&gt;&lt;a href="http://web.iotap.com/Portals/2/Blog/Files/6/118/WLW-RemovingLinkfromPeopleNameinSharepointLi_E6A6-image_10.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="Peoples column without link" border="0" alt="Peoples column without link" src="/Portals/2/Blog/Files/6/118/WLW-RemovingLinkfromPeopleNameinSharepointLi_E6A6-image_thumb_4.png" width="244" height="139" /&gt;&lt;/a&gt;&lt;/p&gt;</description>
      <link>http://www.iotap.com/Blogs/tabid/277/EntryId/118/Removing-Link-from-People-Name-in-Sharepoint-List.aspx</link>
      <comments>http://www.iotap.com/Blogs/tabid/277/EntryId/118/Removing-Link-from-People-Name-in-Sharepoint-List.aspx#Comments</comments>
      <guid isPermaLink="true">http://www.iotap.com/Blogs/tabid/277/EntryId/118/Removing-Link-from-People-Name-in-Sharepoint-List.aspx</guid>
      <pubDate>Tue, 13 Oct 2009 15:21:20 GMT</pubDate>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://web.iotap.com/DesktopModules/Blog/Trackback.aspx?id=118</trackback:ping>
    </item>
    <item>
      <title>Highlighting Overrun Tasks In Sharepoint Gantt Chart</title>
      <description>&lt;p&gt;Though the Gantt Chart that comes out of the box with &lt;strong&gt;Sharepoint&lt;/strong&gt; is useful and easy to setup it has many limitations. One of the features that &lt;strong&gt;Sharepoint&lt;/strong&gt; users were longing for is applying color code to different tasks. last week Christophe of Path to Sharepoint came up with a &lt;a href="http://pathtosharepoint.wordpress.com/2009/09/08/color-coded-gantt-view/" target="_blank"&gt;interesting way&lt;/a&gt; of applying color code using custom images and Jquery script.&lt;/p&gt;  &lt;p&gt; &lt;/p&gt;  &lt;p&gt;The technique used by Christophe can be used to apply different colors to tasks based on their priority.  I have applied the same color changing technique and devised a method for highlighting tasks that have overrun their due date. &lt;/p&gt;  &lt;p&gt; &lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Sharepoint&lt;/strong&gt; adds two custom properties originalTaskFinishDate and originalTaskStartDate to each of the rows in Gantt chart. With this date values we can determine if a task has overrun its due date. We can then highlight the overrun tasks by change the image from blue to red using Jquery.&lt;/p&gt;  &lt;p&gt; &lt;/p&gt;  &lt;p&gt;&lt;a href="http://web.iotap.com/Portals/2/Blog/Files/6/115/WLW-HighlightingOverrunTasksInSharepointGant_C57A-image_2.png"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Sharepoint Gantt Chart" border="0" alt="Sharepoint Gantt Chart" src="/Portals/2/Blog/Files/6/115/WLW-HighlightingOverrunTasksInSharepointGant_C57A-image_thumb.png" width="538" height="304" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt; &lt;/p&gt;  &lt;p&gt;Below is the Jquery code that highlights the overrun tasks&lt;/p&gt;  &lt;p&gt; &lt;/p&gt;  &lt;table border="1" cellspacing="0" cellpadding="2" width="540"&gt;&lt;tbody&gt;     &lt;tr&gt;       &lt;td valign="top" width="538"&gt;         &lt;p&gt;&lt;script src="&lt;a href="http://jqueryjs.googlecode.com/files/jquery-1.3.2.js"" target="_blank"&gt;http://jqueryjs.googlecode.com/files/jquery-1.3.2.js"&lt;/a&gt; type="text/javascript"&gt;&lt;/script&gt;   &lt;br /&gt;&lt;script&gt;             &lt;br /&gt;var currentdate = new Date();             &lt;br /&gt;$(".ms-ganttTaskRow").each(function(i){             &lt;br /&gt;    //Get the task due date             &lt;br /&gt;    var d = new Date(this.attributes("originalTaskFinishDate").value);             &lt;br /&gt;    //if due date has value             &lt;br /&gt;    if(d.getYear() !=1)             &lt;br /&gt;    {             &lt;br /&gt;        var datediff = Math.round((currentdate - d) / (24 * 60 * 60 * 1000));             &lt;br /&gt;        //if due date is greater than current date             &lt;br /&gt;        if (datediff &gt; 0 ){             &lt;br /&gt;        var source=this.innerHTML;             &lt;br /&gt;        //check if the task is completed             &lt;br /&gt;        var match = /(Normal.gif)|(MileStone.gif)/.test(source)            &lt;br /&gt;        if(match)             &lt;br /&gt;        {             &lt;br /&gt;            $(this).find("img").each(function()             &lt;br /&gt;            {             &lt;br /&gt;               var source1=this.src;             &lt;br /&gt;               //replace blue with red             &lt;br /&gt;               source1 = source1.replace(/.gif/, "Red.gif");             &lt;br /&gt;               //change the path of image to where the red images are stored             &lt;br /&gt;               source1 = source1.replace(/\/_layouts\/images/,"/Projects/GImages");             &lt;br /&gt;               this.src=source1;             &lt;br /&gt;            });             &lt;br /&gt;        }             &lt;br /&gt;    }             &lt;br /&gt;}             &lt;br /&gt;});             &lt;br /&gt;&lt;/script&gt;&lt;/p&gt;       &lt;/td&gt;     &lt;/tr&gt;   &lt;/tbody&gt;&lt;/table&gt;  &lt;p&gt; &lt;/p&gt;  &lt;p&gt;In order to add this highlighting to Gantt charts in your &lt;strong&gt;Sharepoint&lt;/strong&gt; pages you need to do the following steps&lt;/p&gt;  &lt;ol&gt;   &lt;li&gt;Add a content editor webpart(CEWP) to the &lt;strong&gt;Sharepoint&lt;/strong&gt; page containing the Gantt chart. Make sure that the CEWP is added after the Gantt chart. &lt;/li&gt;    &lt;li&gt;Add the above script to the CEWP using source editor. &lt;/li&gt;    &lt;li&gt;Change the path of the images(/projects/GImages in script) to the path where you have placed the red images. The images can be downloaded from &lt;a href="http://web.iotap.com/LinkClick.aspx?fileticket=krY5tUZl8ao%3d&amp;tabid=371&amp;mid=957&amp;forcedownload=true"&gt;here&lt;/a&gt;. &lt;/li&gt; &lt;/ol&gt;</description>
      <link>http://www.iotap.com/Blogs/tabid/277/EntryId/115/Highlighting-Overrun-Tasks-In-Sharepoint-Gantt-Chart.aspx</link>
      <comments>http://www.iotap.com/Blogs/tabid/277/EntryId/115/Highlighting-Overrun-Tasks-In-Sharepoint-Gantt-Chart.aspx#Comments</comments>
      <guid isPermaLink="true">http://www.iotap.com/Blogs/tabid/277/EntryId/115/Highlighting-Overrun-Tasks-In-Sharepoint-Gantt-Chart.aspx</guid>
      <pubDate>Wed, 16 Sep 2009 12:08:36 GMT</pubDate>
      <slash:comments>10</slash:comments>
      <trackback:ping>http://web.iotap.com/DesktopModules/Blog/Trackback.aspx?id=115</trackback:ping>
    </item>
    <item>
      <title>Adding document icons in Sharepoint dataview</title>
      <description>&lt;p&gt;This blog explains the steps involved in displaying document icon in &lt;strong&gt;Sharepoint&lt;/strong&gt; dataview.&lt;/p&gt;&lt;a href=http://www.iotap.com/Blogs/tabid/277/EntryId/114/Adding-document-icons-in-Sharepoint-dataview.aspx&gt;More...&lt;/a&gt;</description>
      <link>http://www.iotap.com/Blogs/tabid/277/EntryId/114/Adding-document-icons-in-Sharepoint-dataview.aspx</link>
      <comments>http://www.iotap.com/Blogs/tabid/277/EntryId/114/Adding-document-icons-in-Sharepoint-dataview.aspx#Comments</comments>
      <guid isPermaLink="true">http://www.iotap.com/Blogs/tabid/277/EntryId/114/Adding-document-icons-in-Sharepoint-dataview.aspx</guid>
      <pubDate>Mon, 07 Sep 2009 15:39:23 GMT</pubDate>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://web.iotap.com/DesktopModules/Blog/Trackback.aspx?id=114</trackback:ping>
    </item>
    <item>
      <title>No Item Exists error because of Querystring parameter name</title>
      <description>&lt;p&gt;This blog explains the cause and solution for the No Item exisits &lt;strong&gt;Sharepoint&lt;/strong&gt; webpart page error.&lt;/p&gt;&lt;a href=http://www.iotap.com/Blogs/tabid/277/EntryId/110/No-Item-Exists-error-because-of-Querystring-parameter-name.aspx&gt;More...&lt;/a&gt;</description>
      <link>http://www.iotap.com/Blogs/tabid/277/EntryId/110/No-Item-Exists-error-because-of-Querystring-parameter-name.aspx</link>
      <guid isPermaLink="true">http://www.iotap.com/Blogs/tabid/277/EntryId/110/No-Item-Exists-error-because-of-Querystring-parameter-name.aspx</guid>
      <pubDate>Fri, 07 Aug 2009 14:42:39 GMT</pubDate>
      <trackback:ping>http://web.iotap.com/DesktopModules/Blog/Trackback.aspx?id=110</trackback:ping>
    </item>
    <item>
      <title>Twitter Trends Sharepoint Webpart</title>
      <description>&lt;p&gt;&lt;strong&gt;Sharepoint&lt;/strong&gt; webpart for displaying &lt;strong&gt;Twitter&lt;/strong&gt; trends.&lt;/p&gt;&lt;a href=http://www.iotap.com/Blogs/tabid/277/EntryId/105/Twitter-Trends-Sharepoint-Webpart.aspx&gt;More...&lt;/a&gt;</description>
      <link>http://www.iotap.com/Blogs/tabid/277/EntryId/105/Twitter-Trends-Sharepoint-Webpart.aspx</link>
      <comments>http://www.iotap.com/Blogs/tabid/277/EntryId/105/Twitter-Trends-Sharepoint-Webpart.aspx#Comments</comments>
      <guid isPermaLink="true">http://www.iotap.com/Blogs/tabid/277/EntryId/105/Twitter-Trends-Sharepoint-Webpart.aspx</guid>
      <pubDate>Tue, 23 Jun 2009 06:04:10 GMT</pubDate>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://web.iotap.com/DesktopModules/Blog/Trackback.aspx?id=105</trackback:ping>
    </item>
    <item>
      <title>Silverlight Loader Sharepoint webpart</title>
      <description>&lt;p&gt;The &lt;strong&gt;Silverlight&lt;/strong&gt; Loader webpart allows to load and run a &lt;strong&gt;Silverlight&lt;/strong&gt; 2.0 application within a &lt;strong&gt;Sharepoint &lt;/strong&gt;page.&lt;/p&gt;&lt;a href=http://www.iotap.com/Blogs/tabid/277/EntryId/104/Silverlight-Loader-Sharepoint-webpart.aspx&gt;More...&lt;/a&gt;</description>
      <link>http://www.iotap.com/Blogs/tabid/277/EntryId/104/Silverlight-Loader-Sharepoint-webpart.aspx</link>
      <comments>http://www.iotap.com/Blogs/tabid/277/EntryId/104/Silverlight-Loader-Sharepoint-webpart.aspx#Comments</comments>
      <guid isPermaLink="true">http://www.iotap.com/Blogs/tabid/277/EntryId/104/Silverlight-Loader-Sharepoint-webpart.aspx</guid>
      <pubDate>Thu, 11 Jun 2009 08:22:26 GMT</pubDate>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://web.iotap.com/DesktopModules/Blog/Trackback.aspx?id=104</trackback:ping>
    </item>
    <item>
      <title>New Sharepoint Features are not available in Visual Studio 2010 Beta1</title>
      <description>&lt;p align="justify"&gt;After viewing the the &lt;a href="http://channel9.msdn.com/posts/VisualStudio/Sharepoint-Development-with-Visual-Studio-2010/"&gt;Channel 9 video&lt;/a&gt; on &lt;strong&gt;Sharepoint&lt;/strong&gt; development with &lt;strong&gt;Visual Studio 2010&lt;/strong&gt; we were eagerly waiting for the for the &lt;strong&gt;Visual Studio 2010&lt;/strong&gt; beta release to try out all those &lt;strong&gt;Sharepoint&lt;/strong&gt; goodies. But when we downloaded and used the &lt;strong&gt;Visual Studio&lt;/strong&gt; &lt;strong&gt;2010&lt;/strong&gt; Beta 1 released last week, we were disappointed to see that only two &lt;strong&gt;Sharepoint&lt;/strong&gt; templates were available. The ones for sequential and state machine workflows. The templates for other &lt;strong&gt;Sharepoint&lt;/strong&gt; project types such as webparts, lists etc were missing.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://web.iotap.com/Portals/2/Blog/Files/6/103/WLW-NewSharepointFeaturesarenotavailableinVS_E45B-image_2.png"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="VS2010 Sharepoint" border="0" alt="VS2010 Sharepoint" src="/Portals/2/Blog/Files/6/103/WLW-NewSharepointFeaturesarenotavailableinVS_E45B-image_thumb.png" width="644" height="467" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;Later we understood from the &lt;a href="http://social.msdn.microsoft.com/Forums/en-US/sharepointdevelopmentprerelease/thread/cf7aeee5-c5cb-4e7f-8c96-9975175e45da"&gt;MSDN forum&lt;/a&gt; that the full &lt;strong&gt;Sharepoint&lt;/strong&gt; features is stated only for Beta 2 release of &lt;strong&gt;Visual Studio 2010&lt;/strong&gt;. So we need to wait till then.&lt;/p&gt;</description>
      <link>http://www.iotap.com/Blogs/tabid/277/EntryId/103/New-Sharepoint-Features-are-not-available-in-Visual-Studio-2010-Beta1.aspx</link>
      <comments>http://www.iotap.com/Blogs/tabid/277/EntryId/103/New-Sharepoint-Features-are-not-available-in-Visual-Studio-2010-Beta1.aspx#Comments</comments>
      <guid isPermaLink="true">http://www.iotap.com/Blogs/tabid/277/EntryId/103/New-Sharepoint-Features-are-not-available-in-Visual-Studio-2010-Beta1.aspx</guid>
      <pubDate>Mon, 25 May 2009 07:37:00 GMT</pubDate>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://web.iotap.com/DesktopModules/Blog/Trackback.aspx?id=103</trackback:ping>
    </item>
    <item>
      <title>Increase Print Font Size of Sharepoint Pages</title>
      <description>&lt;p&gt;Increase Print Font Size of &lt;strong&gt;Sharepoint&lt;/strong&gt; Pages&lt;/p&gt;&lt;a href=http://www.iotap.com/Blogs/tabid/277/EntryId/100/Increase-Print-Font-Size-of-Sharepoint-Pages.aspx&gt;More...&lt;/a&gt;</description>
      <link>http://www.iotap.com/Blogs/tabid/277/EntryId/100/Increase-Print-Font-Size-of-Sharepoint-Pages.aspx</link>
      <comments>http://www.iotap.com/Blogs/tabid/277/EntryId/100/Increase-Print-Font-Size-of-Sharepoint-Pages.aspx#Comments</comments>
      <guid isPermaLink="true">http://www.iotap.com/Blogs/tabid/277/EntryId/100/Increase-Print-Font-Size-of-Sharepoint-Pages.aspx</guid>
      <pubDate>Fri, 15 May 2009 13:07:12 GMT</pubDate>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://web.iotap.com/DesktopModules/Blog/Trackback.aspx?id=100</trackback:ping>
    </item>
    <item>
      <title>Posting to SharePoint Blogs with Live Writer</title>
      <description>&lt;p style="margin: 0in 0in 10pt" class="MsoNormal"&gt;&lt;font size="3" face="Calibri"&gt;This blog explains the process of posting to &lt;strong style="mso-bidi-font-weight: normal"&gt;Sharepoint&lt;/strong&gt; blog site using &lt;strong style="mso-bidi-font-weight: normal"&gt;Windows Live Writer&lt;/strong&gt;.&lt;/font&gt;&lt;/p&gt;&lt;a href=http://www.iotap.com/Blogs/tabid/277/EntryId/99/Posting-to-SharePoint-Blogs-with-Live-Writer.aspx&gt;More...&lt;/a&gt;</description>
      <link>http://www.iotap.com/Blogs/tabid/277/EntryId/99/Posting-to-SharePoint-Blogs-with-Live-Writer.aspx</link>
      <guid isPermaLink="true">http://www.iotap.com/Blogs/tabid/277/EntryId/99/Posting-to-SharePoint-Blogs-with-Live-Writer.aspx</guid>
      <pubDate>Wed, 13 May 2009 15:40:35 GMT</pubDate>
      <trackback:ping>http://web.iotap.com/DesktopModules/Blog/Trackback.aspx?id=99</trackback:ping>
    </item>
    <item>
      <title>Speeding up Sharepoint pages loading by removing core.css</title>
      <description>&lt;p style="margin: 0in 0in 10pt" class="MsoNormal"&gt;&lt;font size="3" face="Calibri"&gt;This blog explains the process of speeding up &lt;strong&gt;Sharepoint&lt;/strong&gt; pages by removing the link to core.css file.&lt;/font&gt;&lt;/p&gt;&lt;a href=http://www.iotap.com/Blogs/tabid/277/EntryId/94/Speeding-up-Sharepoint-pages-loading-by-removing-core-css.aspx&gt;More...&lt;/a&gt;</description>
      <link>http://www.iotap.com/Blogs/tabid/277/EntryId/94/Speeding-up-Sharepoint-pages-loading-by-removing-core-css.aspx</link>
      <comments>http://www.iotap.com/Blogs/tabid/277/EntryId/94/Speeding-up-Sharepoint-pages-loading-by-removing-core-css.aspx#Comments</comments>
      <guid isPermaLink="true">http://www.iotap.com/Blogs/tabid/277/EntryId/94/Speeding-up-Sharepoint-pages-loading-by-removing-core-css.aspx</guid>
      <pubDate>Fri, 03 Apr 2009 05:59:00 GMT</pubDate>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://web.iotap.com/DesktopModules/Blog/Trackback.aspx?id=94</trackback:ping>
    </item>
    <item>
      <title>Blocking Anonymous Users from Sharepoint List Pages</title>
      <description>&lt;p&gt;This blogs explains the way of blocking anonymous users from seeing the &lt;strong&gt;Sharepoint&lt;/strong&gt; list pages such as AllItems.aspx, Dispform.aspx, Editform.aspx, and Newform.aspx&lt;/p&gt;&lt;a href=http://www.iotap.com/Blogs/tabid/277/EntryId/86/Blocking-Anonymous-Users-from-Sharepoint-List-Pages.aspx&gt;More...&lt;/a&gt;</description>
      <link>http://www.iotap.com/Blogs/tabid/277/EntryId/86/Blocking-Anonymous-Users-from-Sharepoint-List-Pages.aspx</link>
      <comments>http://www.iotap.com/Blogs/tabid/277/EntryId/86/Blocking-Anonymous-Users-from-Sharepoint-List-Pages.aspx#Comments</comments>
      <guid isPermaLink="true">http://www.iotap.com/Blogs/tabid/277/EntryId/86/Blocking-Anonymous-Users-from-Sharepoint-List-Pages.aspx</guid>
      <pubDate>Fri, 30 Jan 2009 12:44:00 GMT</pubDate>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://web.iotap.com/DesktopModules/Blog/Trackback.aspx?id=86</trackback:ping>
    </item>
    <item>
      <title>Grouping a Sharepoint list by Month Name &amp; Year </title>
      <description>&lt;p&gt;This blogs explains the process of grouping a Sharepoint list data based on Month name and year from a date columns.&lt;/p&gt;&lt;a href=http://web.iotap.com/Blogs/tabid/277/EntryId/85/Grouping-a-Sharepoint-list-by-Month-Name-Year.aspx&gt;More...&lt;/a&gt;</description>
      <link>http://web.iotap.com/Blogs/tabid/277/EntryId/85/Grouping-a-Sharepoint-list-by-Month-Name-Year.aspx</link>
      <comments>http://web.iotap.com/Blogs/tabid/277/EntryId/85/Grouping-a-Sharepoint-list-by-Month-Name-Year.aspx#Comments</comments>
      <guid isPermaLink="true">http://web.iotap.com/Blogs/tabid/277/EntryId/85/Grouping-a-Sharepoint-list-by-Month-Name-Year.aspx</guid>
      <pubDate>Wed, 21 Jan 2009 09:06:00 GMT</pubDate>
      <slash:comments>9</slash:comments>
      <trackback:ping>http://web.iotap.com/DesktopModules/Blog/Trackback.aspx?id=85</trackback:ping>
    </item>
    <item>
      <title>Embedding Popfly Block within Sharepoint Page</title>
      <description>&lt;p&gt;This blog explains the steps involved in embedding a Popfly mashup within a &lt;strong&gt;Sharepoint&lt;/strong&gt; page.&lt;/p&gt;&lt;a href=http://web.iotap.com/Blogs/tabid/277/EntryId/84/Embedding-Popfly-Block-within-Sharepoint-Page.aspx&gt;More...&lt;/a&gt;</description>
      <link>http://web.iotap.com/Blogs/tabid/277/EntryId/84/Embedding-Popfly-Block-within-Sharepoint-Page.aspx</link>
      <comments>http://web.iotap.com/Blogs/tabid/277/EntryId/84/Embedding-Popfly-Block-within-Sharepoint-Page.aspx#Comments</comments>
      <guid isPermaLink="true">http://web.iotap.com/Blogs/tabid/277/EntryId/84/Embedding-Popfly-Block-within-Sharepoint-Page.aspx</guid>
      <pubDate>Tue, 06 Jan 2009 14:40:00 GMT</pubDate>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://web.iotap.com/DesktopModules/Blog/Trackback.aspx?id=84</trackback:ping>
    </item>
    <item>
      <title>Printer Friendly Page Sharepoint web part</title>
      <description>&lt;p&gt;We at IOTAP have created a Printer Friendly Page &lt;strong&gt;Sharepoint&lt;/strong&gt; web part which allows end users to print contents of a &lt;strong&gt;Sharepoint&lt;/strong&gt; page without the top navigation menu,images and quick launch.&lt;/p&gt;&lt;a href=http://web.iotap.com/Blogs/tabid/277/EntryId/82/Printer-Friendly-Page-Sharepoint-web-part.aspx&gt;More...&lt;/a&gt;</description>
      <link>http://web.iotap.com/Blogs/tabid/277/EntryId/82/Printer-Friendly-Page-Sharepoint-web-part.aspx</link>
      <comments>http://web.iotap.com/Blogs/tabid/277/EntryId/82/Printer-Friendly-Page-Sharepoint-web-part.aspx#Comments</comments>
      <guid isPermaLink="true">http://web.iotap.com/Blogs/tabid/277/EntryId/82/Printer-Friendly-Page-Sharepoint-web-part.aspx</guid>
      <pubDate>Mon, 29 Dec 2008 10:07:00 GMT</pubDate>
      <slash:comments>3</slash:comments>
      <trackback:ping>http://web.iotap.com/DesktopModules/Blog/Trackback.aspx?id=82</trackback:ping>
    </item>
    <item>
      <title>Sharepoint Social Bookmarking Web part</title>
      <description>&lt;p&gt;We have created a social bookmarking Sharepoint web part which allows you to add bookmarks for 29 popular social sites to &lt;strong&gt;Sharepoint&lt;/strong&gt; pages.&lt;/p&gt;&lt;a href=http://web.iotap.com/Blogs/tabid/277/EntryId/81/Sharepoint-Social-Bookmarking-Web-part.aspx&gt;More...&lt;/a&gt;</description>
      <link>http://web.iotap.com/Blogs/tabid/277/EntryId/81/Sharepoint-Social-Bookmarking-Web-part.aspx</link>
      <comments>http://web.iotap.com/Blogs/tabid/277/EntryId/81/Sharepoint-Social-Bookmarking-Web-part.aspx#Comments</comments>
      <guid isPermaLink="true">http://web.iotap.com/Blogs/tabid/277/EntryId/81/Sharepoint-Social-Bookmarking-Web-part.aspx</guid>
      <pubDate>Mon, 15 Dec 2008 13:50:00 GMT</pubDate>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://web.iotap.com/DesktopModules/Blog/Trackback.aspx?id=81</trackback:ping>
    </item>
    <item>
      <title>SharePoint Copy WebService - Part 1</title>
      <description>&lt;p&gt; I got a work on moving a file from document library using Web Service. I already work on this, but I did that with SharePoint Object model. Now I have to search for this about web service, oh… I had forgotten the Copy web service; it’s just announced in WSS3.0 .................&lt;/p&gt;&lt;a href=http://web.iotap.com/Blogs/tabid/277/EntryId/80/SharePoint-Copy-WebService-Part-1.aspx&gt;More...&lt;/a&gt;</description>
      <link>http://web.iotap.com/Blogs/tabid/277/EntryId/80/SharePoint-Copy-WebService-Part-1.aspx</link>
      <comments>http://web.iotap.com/Blogs/tabid/277/EntryId/80/SharePoint-Copy-WebService-Part-1.aspx#Comments</comments>
      <guid isPermaLink="true">http://web.iotap.com/Blogs/tabid/277/EntryId/80/SharePoint-Copy-WebService-Part-1.aspx</guid>
      <pubDate>Wed, 10 Dec 2008 06:06:00 GMT</pubDate>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://web.iotap.com/DesktopModules/Blog/Trackback.aspx?id=80</trackback:ping>
    </item>
    <item>
      <title>SPitter – A Twitter for Sharepoint</title>
      <description>&lt;p&gt;This blog explains how IOTAP uses a Sharepoint tool similar to Twitter for better collaboration&lt;/p&gt;&lt;a href=http://web.iotap.com/Blogs/tabid/277/EntryId/79/SPitter-A-Twitter-for-Sharepoint.aspx&gt;More...&lt;/a&gt;</description>
      <link>http://web.iotap.com/Blogs/tabid/277/EntryId/79/SPitter-A-Twitter-for-Sharepoint.aspx</link>
      <comments>http://web.iotap.com/Blogs/tabid/277/EntryId/79/SPitter-A-Twitter-for-Sharepoint.aspx#Comments</comments>
      <guid isPermaLink="true">http://web.iotap.com/Blogs/tabid/277/EntryId/79/SPitter-A-Twitter-for-Sharepoint.aspx</guid>
      <pubDate>Fri, 05 Dec 2008 12:55:00 GMT</pubDate>
      <slash:comments>3</slash:comments>
      <trackback:ping>http://web.iotap.com/DesktopModules/Blog/Trackback.aspx?id=79</trackback:ping>
    </item>
    <item>
      <title>Missing "Edit in DataSheet" option in SharePoint Lists</title>
      <description>&lt;p&gt;
&lt;title&gt;&lt;/title&gt;
&lt;link rel="stylesheet" type="text/css" href="/Providers/HtmlEditorProviders/Fck/FCKeditor/editor/css/fck_editorarea.css" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;font size="2"&gt;This blog explains the process of enabling "Edit in Datasheet" option for &lt;strong&gt;Sharepoint &lt;/strong&gt;lists in &lt;strong&gt;Sharepoint &lt;/strong&gt;sites that uses &lt;strong&gt;Forms Based Authentication &lt;/strong&gt;scheme&lt;/font&gt;&lt;/p&gt;&lt;a href=http://web.iotap.com/Blogs/tabid/277/EntryId/76/Missing-Edit-in-DataSheet-option-in-SharePoint-Lists.aspx&gt;More...&lt;/a&gt;</description>
      <link>http://web.iotap.com/Blogs/tabid/277/EntryId/76/Missing-Edit-in-DataSheet-option-in-SharePoint-Lists.aspx</link>
      <comments>http://web.iotap.com/Blogs/tabid/277/EntryId/76/Missing-Edit-in-DataSheet-option-in-SharePoint-Lists.aspx#Comments</comments>
      <guid isPermaLink="true">http://web.iotap.com/Blogs/tabid/277/EntryId/76/Missing-Edit-in-DataSheet-option-in-SharePoint-Lists.aspx</guid>
      <pubDate>Mon, 24 Nov 2008 06:30:00 GMT</pubDate>
      <slash:comments>2</slash:comments>
      <trackback:ping>http://web.iotap.com/DesktopModules/Blog/Trackback.aspx?id=76</trackback:ping>
    </item>
    <item>
      <title>How to Close browser window on server side using SharePoint</title>
      <description>&lt;p&gt;Closing a browser window without the confirmation-prompt.&lt;/p&gt;&lt;a href=http://web.iotap.com/Blogs/tabid/277/EntryId/70/How-to-Close-browser-window-on-server-side-using-SharePoint.aspx&gt;More...&lt;/a&gt;</description>
      <link>http://web.iotap.com/Blogs/tabid/277/EntryId/70/How-to-Close-browser-window-on-server-side-using-SharePoint.aspx</link>
      <comments>http://web.iotap.com/Blogs/tabid/277/EntryId/70/How-to-Close-browser-window-on-server-side-using-SharePoint.aspx#Comments</comments>
      <guid isPermaLink="true">http://web.iotap.com/Blogs/tabid/277/EntryId/70/How-to-Close-browser-window-on-server-side-using-SharePoint.aspx</guid>
      <pubDate>Tue, 18 Nov 2008 09:13:00 GMT</pubDate>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://web.iotap.com/DesktopModules/Blog/Trackback.aspx?id=70</trackback:ping>
    </item>
    <item>
      <title>Cannot connect to Windows Sharepoint Services (WSS) Internal Database Microsoft##SSEE</title>
      <description>&lt;p&gt;This blog explains the steps of connecting to Windows Sharepoint Services (WSS) &lt;strong&gt;&lt;span style="color: windowtext; text-decoration: none; text-underline: none"&gt;Microsoft##SSEE&lt;/span&gt;&lt;/strong&gt; internal database from SQL Server management studio.&lt;/p&gt;&lt;a href=http://web.iotap.com/Blogs/tabid/277/EntryId/66/Cannot-connect-to-Windows-Sharepoint-Services-WSS-Internal-Database-Microsoft-SSEE.aspx&gt;More...&lt;/a&gt;</description>
      <link>http://web.iotap.com/Blogs/tabid/277/EntryId/66/Cannot-connect-to-Windows-Sharepoint-Services-WSS-Internal-Database-Microsoft-SSEE.aspx</link>
      <comments>http://web.iotap.com/Blogs/tabid/277/EntryId/66/Cannot-connect-to-Windows-Sharepoint-Services-WSS-Internal-Database-Microsoft-SSEE.aspx#Comments</comments>
      <guid isPermaLink="true">http://web.iotap.com/Blogs/tabid/277/EntryId/66/Cannot-connect-to-Windows-Sharepoint-Services-WSS-Internal-Database-Microsoft-SSEE.aspx</guid>
      <pubDate>Tue, 11 Nov 2008 11:04:00 GMT</pubDate>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://web.iotap.com/DesktopModules/Blog/Trackback.aspx?id=66</trackback:ping>
    </item>
    <item>
      <title>Visual Studio 2008 Sharepoint Deployment Issue</title>
      <description>&lt;p&gt;This blog explains the technique for overcoming a tricky behavior exhibited by VS 2008 while deploying Sharepoint webparts.&lt;/p&gt;&lt;a href=http://web.iotap.com/Blogs/tabid/277/EntryId/64/Visual-Studio-2008-Sharepoint-Deployment-Issue.aspx&gt;More...&lt;/a&gt;</description>
      <link>http://web.iotap.com/Blogs/tabid/277/EntryId/64/Visual-Studio-2008-Sharepoint-Deployment-Issue.aspx</link>
      <comments>http://web.iotap.com/Blogs/tabid/277/EntryId/64/Visual-Studio-2008-Sharepoint-Deployment-Issue.aspx#Comments</comments>
      <guid isPermaLink="true">http://web.iotap.com/Blogs/tabid/277/EntryId/64/Visual-Studio-2008-Sharepoint-Deployment-Issue.aspx</guid>
      <pubDate>Thu, 30 Oct 2008 12:44:00 GMT</pubDate>
      <slash:comments>2</slash:comments>
      <trackback:ping>http://web.iotap.com/DesktopModules/Blog/Trackback.aspx?id=64</trackback:ping>
    </item>
    <item>
      <title>Hide Sign-In link on the SPSites except admin page</title>
      <description>&lt;p&gt;Hide the sign-in link on the Sharepoint sites except admin page&lt;/p&gt;&lt;a href=http://web.iotap.com/Blogs/tabid/277/EntryId/62/Hide-Sign-In-link-on-the-SPSites-except-admin-page.aspx&gt;More...&lt;/a&gt;</description>
      <link>http://web.iotap.com/Blogs/tabid/277/EntryId/62/Hide-Sign-In-link-on-the-SPSites-except-admin-page.aspx</link>
      <comments>http://web.iotap.com/Blogs/tabid/277/EntryId/62/Hide-Sign-In-link-on-the-SPSites-except-admin-page.aspx#Comments</comments>
      <guid isPermaLink="true">http://web.iotap.com/Blogs/tabid/277/EntryId/62/Hide-Sign-In-link-on-the-SPSites-except-admin-page.aspx</guid>
      <pubDate>Wed, 15 Oct 2008 12:49:00 GMT</pubDate>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://web.iotap.com/DesktopModules/Blog/Trackback.aspx?id=62</trackback:ping>
    </item>
    <item>
      <title>Debugging Sharepoint Webpart from VS 2008</title>
      <description>&lt;p&gt;This blog entry describes the steps involved in debugging Sharepoint web part code from Visual Studio 2008.&lt;/p&gt;&lt;a href=http://web.iotap.com/Blogs/tabid/277/EntryId/61/Debugging-Sharepoint-Webpart-from-VS-2008.aspx&gt;More...&lt;/a&gt;</description>
      <link>http://web.iotap.com/Blogs/tabid/277/EntryId/61/Debugging-Sharepoint-Webpart-from-VS-2008.aspx</link>
      <comments>http://web.iotap.com/Blogs/tabid/277/EntryId/61/Debugging-Sharepoint-Webpart-from-VS-2008.aspx#Comments</comments>
      <guid isPermaLink="true">http://web.iotap.com/Blogs/tabid/277/EntryId/61/Debugging-Sharepoint-Webpart-from-VS-2008.aspx</guid>
      <pubDate>Tue, 14 Oct 2008 11:32:00 GMT</pubDate>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://web.iotap.com/DesktopModules/Blog/Trackback.aspx?id=61</trackback:ping>
    </item>
    <item>
      <title>How we can Create Search Provider  in Internet Explorer 8 Beta</title>
      <description>&lt;p&gt;Search Provider  in Internet Explorer 8 Beta&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;Grace.D&lt;/p&gt;
&lt;p&gt;dgrace@iotap.com&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;&lt;a href=http://web.iotap.com/Blogs/tabid/277/EntryId/60/How-we-can-Create-Search-Provider-in-Internet-Explorer-8-Beta.aspx&gt;More...&lt;/a&gt;</description>
      <link>http://web.iotap.com/Blogs/tabid/277/EntryId/60/How-we-can-Create-Search-Provider-in-Internet-Explorer-8-Beta.aspx</link>
      <comments>http://web.iotap.com/Blogs/tabid/277/EntryId/60/How-we-can-Create-Search-Provider-in-Internet-Explorer-8-Beta.aspx#Comments</comments>
      <guid isPermaLink="true">http://web.iotap.com/Blogs/tabid/277/EntryId/60/How-we-can-Create-Search-Provider-in-Internet-Explorer-8-Beta.aspx</guid>
      <pubDate>Tue, 07 Oct 2008 09:16:00 GMT</pubDate>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://web.iotap.com/DesktopModules/Blog/Trackback.aspx?id=60</trackback:ping>
    </item>
    <item>
      <title>How we can Create WebSlices in Internet Explorer 8 Beta</title>
      <description>&lt;p&gt;A Web Slice is a section of a webpage that is treated like a subscribable item, just like a feed. To enable a Web Slice on your website, annotate your webpage with class names for the title, description, and other subscribable properties.&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;Grace.D&lt;/p&gt;
&lt;p&gt;dgrace@iotap.com&lt;/p&gt;&lt;a href=http://web.iotap.com/Blogs/tabid/277/EntryId/59/How-we-can-Create-WebSlices-in-Internet-Explorer-8-Beta.aspx&gt;More...&lt;/a&gt;</description>
      <link>http://web.iotap.com/Blogs/tabid/277/EntryId/59/How-we-can-Create-WebSlices-in-Internet-Explorer-8-Beta.aspx</link>
      <comments>http://web.iotap.com/Blogs/tabid/277/EntryId/59/How-we-can-Create-WebSlices-in-Internet-Explorer-8-Beta.aspx#Comments</comments>
      <guid isPermaLink="true">http://web.iotap.com/Blogs/tabid/277/EntryId/59/How-we-can-Create-WebSlices-in-Internet-Explorer-8-Beta.aspx</guid>
      <pubDate>Tue, 07 Oct 2008 09:10:00 GMT</pubDate>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://web.iotap.com/DesktopModules/Blog/Trackback.aspx?id=59</trackback:ping>
    </item>
    <item>
      <title>How we can Create Accelerator in Internet Explorer 8 Beta</title>
      <description>&lt;p&gt;Accelerators are contextual services which quickly access a service from any webpage.&lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-size: 7pt; color: black; line-height: 115%; font-family: 'Arial','sans-serif'"&gt;&lt;font face="Times New Roman" size="2"&gt;Grace.D&lt;br /&gt;
&lt;/font&gt;&lt;/span&gt;&lt;span style="font-size: 7pt; color: black; line-height: 115%; font-family: 'Arial','sans-serif'"&gt;&lt;a href="http://web.iotap.commailto:dgrace@iotap.com"&gt;&lt;font face="Times New Roman" size="2"&gt;dgrace@iotap.com&lt;/font&gt;&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin: 0in 0in 10pt"&gt; &lt;/p&gt;&lt;a href=http://web.iotap.com/Blogs/tabid/277/EntryId/58/How-we-can-Create-Accelerator-in-Internet-Explorer-8-Beta.aspx&gt;More...&lt;/a&gt;</description>
      <link>http://web.iotap.com/Blogs/tabid/277/EntryId/58/How-we-can-Create-Accelerator-in-Internet-Explorer-8-Beta.aspx</link>
      <comments>http://web.iotap.com/Blogs/tabid/277/EntryId/58/How-we-can-Create-Accelerator-in-Internet-Explorer-8-Beta.aspx#Comments</comments>
      <guid isPermaLink="true">http://web.iotap.com/Blogs/tabid/277/EntryId/58/How-we-can-Create-Accelerator-in-Internet-Explorer-8-Beta.aspx</guid>
      <pubDate>Tue, 07 Oct 2008 08:49:00 GMT</pubDate>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://web.iotap.com/DesktopModules/Blog/Trackback.aspx?id=58</trackback:ping>
    </item>
    <item>
      <title>Solving ActiveX Problem in Sharepoint</title>
      <description>&lt;p&gt;&lt;font style="background-color: #ffff00"&gt;The Web site wants to run the following add-on: 'Name ActiveX Control' from 'Microsoft Corporation'. If you trust the Web site and the add-on and want to allow it to run, click here... &lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font size="+0"&gt;-------------------------------------------------&lt;/font&gt;&lt;br /&gt;
&lt;strong&gt;Shantha Kumar T &lt;/strong&gt;( &lt;strong&gt;MCTS&lt;/strong&gt; ) &lt;br /&gt;
&lt;a href="http://web.iotap.commailto:tshanthakumar@iotap.com"&gt;&lt;strong&gt;&lt;font color="#027aca" size="2"&gt;tshanthakumar@iotap.com&lt;/font&gt;&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;&lt;a href=http://web.iotap.com/Blogs/tabid/277/EntryId/56/Solving-ActiveX-Problem-in-Sharepoint.aspx&gt;More...&lt;/a&gt;</description>
      <link>http://web.iotap.com/Blogs/tabid/277/EntryId/56/Solving-ActiveX-Problem-in-Sharepoint.aspx</link>
      <comments>http://web.iotap.com/Blogs/tabid/277/EntryId/56/Solving-ActiveX-Problem-in-Sharepoint.aspx#Comments</comments>
      <guid isPermaLink="true">http://web.iotap.com/Blogs/tabid/277/EntryId/56/Solving-ActiveX-Problem-in-Sharepoint.aspx</guid>
      <pubDate>Fri, 03 Oct 2008 09:14:00 GMT</pubDate>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://web.iotap.com/DesktopModules/Blog/Trackback.aspx?id=56</trackback:ping>
    </item>
    <item>
      <title>Alert Notification Tips</title>
      <description>&lt;p&gt;Are you getting the e-mail alerts, Body links refers to local machine url &lt;font color="#0000ff"&gt;&lt;u&gt;http://machine&lt;/u&gt;&lt;/font&gt; instead of &lt;font color="#0000ff"&gt;&lt;u&gt;&lt;a href="http://portal.test.com/"&gt;http://portal.test.com&lt;/a&gt;&lt;/u&gt;&lt;/font&gt;?&lt;/p&gt;
&lt;p&gt;-----------------------------&lt;/p&gt;&lt;a href=http://web.iotap.com/Blogs/tabid/277/EntryId/55/Alert-Notification-Tips.aspx&gt;More...&lt;/a&gt;</description>
      <link>http://web.iotap.com/Blogs/tabid/277/EntryId/55/Alert-Notification-Tips.aspx</link>
      <comments>http://web.iotap.com/Blogs/tabid/277/EntryId/55/Alert-Notification-Tips.aspx#Comments</comments>
      <guid isPermaLink="true">http://web.iotap.com/Blogs/tabid/277/EntryId/55/Alert-Notification-Tips.aspx</guid>
      <pubDate>Fri, 26 Sep 2008 10:11:00 GMT</pubDate>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://web.iotap.com/DesktopModules/Blog/Trackback.aspx?id=55</trackback:ping>
    </item>
    <item>
      <title>Custom Master Page Error</title>
      <description>&lt;div style="margin: 0in 0in 10pt"&gt;&lt;span style="line-height: 115%; font-size: 10pt"&gt;
&lt;p&gt;If you are applying custom Master page using custom feature, you may get the following error when viewing or creating a new site,&lt;/p&gt;
&lt;p&gt;&lt;em&gt;Cannot convert type 'Microsoft.SharePoint.WebControls.ScriptLink' to 'System.Web.UI.IAttributeAccessor'  &lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;---------------------&lt;/em&gt;&lt;/p&gt;
&lt;/span&gt;&lt;/div&gt;&lt;a href=http://web.iotap.com/Blogs/tabid/277/EntryId/54/Custom-Master-Page-Error.aspx&gt;More...&lt;/a&gt;</description>
      <link>http://web.iotap.com/Blogs/tabid/277/EntryId/54/Custom-Master-Page-Error.aspx</link>
      <comments>http://web.iotap.com/Blogs/tabid/277/EntryId/54/Custom-Master-Page-Error.aspx#Comments</comments>
      <guid isPermaLink="true">http://web.iotap.com/Blogs/tabid/277/EntryId/54/Custom-Master-Page-Error.aspx</guid>
      <pubDate>Thu, 25 Sep 2008 08:48:00 GMT</pubDate>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://web.iotap.com/DesktopModules/Blog/Trackback.aspx?id=54</trackback:ping>
    </item>
    <item>
      <title>Live Cricket scores in Sharepoint  site</title>
      <description>This blog explains the steps involved in displaying live cricket scores in Sharepoint site using score feed from Cricinfo site&lt;a href=http://web.iotap.com/Blogs/tabid/277/EntryId/53/Live-Cricket-scores-in-Sharepoint-site.aspx&gt;More...&lt;/a&gt;</description>
      <link>http://web.iotap.com/Blogs/tabid/277/EntryId/53/Live-Cricket-scores-in-Sharepoint-site.aspx</link>
      <comments>http://web.iotap.com/Blogs/tabid/277/EntryId/53/Live-Cricket-scores-in-Sharepoint-site.aspx#Comments</comments>
      <guid isPermaLink="true">http://web.iotap.com/Blogs/tabid/277/EntryId/53/Live-Cricket-scores-in-Sharepoint-site.aspx</guid>
      <pubDate>Fri, 19 Sep 2008 11:38:00 GMT</pubDate>
      <slash:comments>5</slash:comments>
      <trackback:ping>http://web.iotap.com/DesktopModules/Blog/Trackback.aspx?id=53</trackback:ping>
    </item>
    <item>
      <title>Add Flash file to SharePoint Rich Text Field Editor</title>
      <description>&lt;div&gt;SharePoint Rich-Text filed editor allows us to write the HTML code, but it doesn’t allow us to embed Flash files.&lt;/div&gt;
&lt;div&gt;So, I have searched on this issue and come with a solution.  For that, I’m using swfobject.js file and adding some script lines to the page where we want to embed this flash file.&lt;/div&gt;&lt;a href=http://web.iotap.com/Blogs/tabid/277/EntryId/41/Add-Flash-file-to-SharePoint-Rich-Text-Field-Editor.aspx&gt;More...&lt;/a&gt;</description>
      <link>http://web.iotap.com/Blogs/tabid/277/EntryId/41/Add-Flash-file-to-SharePoint-Rich-Text-Field-Editor.aspx</link>
      <comments>http://web.iotap.com/Blogs/tabid/277/EntryId/41/Add-Flash-file-to-SharePoint-Rich-Text-Field-Editor.aspx#Comments</comments>
      <guid isPermaLink="true">http://web.iotap.com/Blogs/tabid/277/EntryId/41/Add-Flash-file-to-SharePoint-Rich-Text-Field-Editor.aspx</guid>
      <pubDate>Wed, 27 Aug 2008 04:49:00 GMT</pubDate>
      <slash:comments>1</slash:comments>
      <trackback:ping>http://web.iotap.com/DesktopModules/Blog/Trackback.aspx?id=41</trackback:ping>
    </item>
    <item>
      <title>Sending Email using SPUtility Class</title>
      <description>&lt;p&gt;The SPUtility.SendEmail method enables you to send an email from the context of a SharePoint Web (SPWeb) object.&lt;/p&gt;&lt;a href=http://web.iotap.com/Blogs/tabid/277/EntryId/40/Sending-Email-using-SPUtility-Class.aspx&gt;More...&lt;/a&gt;</description>
      <link>http://web.iotap.com/Blogs/tabid/277/EntryId/40/Sending-Email-using-SPUtility-Class.aspx</link>
      <comments>http://web.iotap.com/Blogs/tabid/277/EntryId/40/Sending-Email-using-SPUtility-Class.aspx#Comments</comments>
      <guid isPermaLink="true">http://web.iotap.com/Blogs/tabid/277/EntryId/40/Sending-Email-using-SPUtility-Class.aspx</guid>
      <pubDate>Wed, 20 Aug 2008 10:17:00 GMT</pubDate>
      <slash:comments>4</slash:comments>
      <trackback:ping>http://web.iotap.com/DesktopModules/Blog/Trackback.aspx?id=40</trackback:ping>
    </item>
    <item>
      <title>Custom Document Property as Page Title</title>
      <description>This blog is tip about changing the default title for web part pages&lt;a href=http://web.iotap.com/Blogs/tabid/277/EntryId/10/Custom-Document-Property-as-Page-Title.aspx&gt;More...&lt;/a&gt;</description>
      <link>http://web.iotap.com/Blogs/tabid/277/EntryId/10/Custom-Document-Property-as-Page-Title.aspx</link>
      <comments>http://web.iotap.com/Blogs/tabid/277/EntryId/10/Custom-Document-Property-as-Page-Title.aspx#Comments</comments>
      <guid isPermaLink="true">http://web.iotap.com/Blogs/tabid/277/EntryId/10/Custom-Document-Property-as-Page-Title.aspx</guid>
      <pubDate>Tue, 29 Jul 2008 10:50:55 GMT</pubDate>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://web.iotap.com/DesktopModules/Blog/Trackback.aspx?id=10</trackback:ping>
    </item>
    <item>
      <title>SharePoint Designer Form Action Button</title>
      <description>SharePoint designer has a control called Form Action Button which can perform the same process without us doing any java script tweaking. This blog post will explain the various options available for Form Action Button control&lt;a href=http://web.iotap.com/Blogs/tabid/277/EntryId/9/SharePoint-Designer-Form-Action-Button.aspx&gt;More...&lt;/a&gt;</description>
      <link>http://web.iotap.com/Blogs/tabid/277/EntryId/9/SharePoint-Designer-Form-Action-Button.aspx</link>
      <comments>http://web.iotap.com/Blogs/tabid/277/EntryId/9/SharePoint-Designer-Form-Action-Button.aspx#Comments</comments>
      <guid isPermaLink="true">http://web.iotap.com/Blogs/tabid/277/EntryId/9/SharePoint-Designer-Form-Action-Button.aspx</guid>
      <pubDate>Fri, 18 Jul 2008 07:15:52 GMT</pubDate>
      <slash:comments>4</slash:comments>
      <trackback:ping>http://web.iotap.com/DesktopModules/Blog/Trackback.aspx?id=9</trackback:ping>
    </item>
    <item>
      <title>Redirecting to a custom URL from Sharepoint custom forms</title>
      <description>This is a tip for redirecting users to a different page when save button on a custom list form is clicked.&lt;a href=http://web.iotap.com/Blogs/tabid/277/EntryId/7/Redirecting-to-a-custom-URL-from-Sharepoint-custom-forms.aspx&gt;More...&lt;/a&gt;</description>
      <link>http://web.iotap.com/Blogs/tabid/277/EntryId/7/Redirecting-to-a-custom-URL-from-Sharepoint-custom-forms.aspx</link>
      <guid isPermaLink="true">http://web.iotap.com/Blogs/tabid/277/EntryId/7/Redirecting-to-a-custom-URL-from-Sharepoint-custom-forms.aspx</guid>
      <pubDate>Mon, 07 Jul 2008 14:19:07 GMT</pubDate>
      <trackback:ping>http://web.iotap.com/DesktopModules/Blog/Trackback.aspx?id=7</trackback:ping>
    </item>
  </channel>
</rss>