<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/atom.xsl" media="screen"?><feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-US"><title type="html">Navdeep Madan</title><subtitle type="html" /><id>http://blogs.msdn.com/navdeepm/atom.xml</id><link rel="alternate" type="text/html" href="http://blogs.msdn.com/navdeepm/default.aspx" /><link rel="self" type="application/atom+xml" href="http://blogs.msdn.com/navdeepm/atom.xml" /><generator uri="http://communityserver.org" version="2.1.61025.2">Community Server</generator><updated>2009-09-16T00:18:54Z</updated><entry><title>Type: InfoPathLocalizedException, Exception Message: The specified form cannot be found.</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/navdeepm/archive/2009/11/17/type-infopathlocalizedexception-exception-message-the-specified-form-cannot-be-found.aspx" /><id>http://blogs.msdn.com/navdeepm/archive/2009/11/17/type-infopathlocalizedexception-exception-message-the-specified-form-cannot-be-found.aspx</id><published>2009-11-17T16:46:43Z</published><updated>2009-11-17T16:46:43Z</updated><content type="html">The above error message I faced when I was trying to open a InfoPath task form from “In Progress” option from a document library. I created a workflow&amp;#160; and used the InfoPath form as task from and also write some code referring the Microsoft.SharePoint.dll inside the InfoPath from. Then I packaged InfoPath form with workflow as a wsp package and deployed the workflow using the addsolution command. stsadm -o addsolution &amp;#160;&amp;#160; -filename &amp;lt;solution file name&amp;gt; &amp;#160;&amp;#160; [-lcid] &amp;lt;language&amp;gt;...(&lt;a href="http://blogs.msdn.com/navdeepm/archive/2009/11/17/type-infopathlocalizedexception-exception-message-the-specified-form-cannot-be-found.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9923668" width="1" height="1"&gt;</content><author><name>navdeepm</name><uri>http://blogs.msdn.com/members/navdeepm.aspx</uri></author></entry><entry><title>Modified Column in SharePoint Document Library is Read-only</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/navdeepm/archive/2009/11/17/modified-column-in-sharepoint-document-library-is-read-only.aspx" /><id>http://blogs.msdn.com/navdeepm/archive/2009/11/17/modified-column-in-sharepoint-document-library-is-read-only.aspx</id><published>2009-11-17T14:11:22Z</published><updated>2009-11-17T14:11:22Z</updated><content type="html">In SharePoint Document Library, there is column named “Modified” and it’s read-only. I have written the following code snippet through object tried to update the Modified column but didn’t get the success. 1: //Create the SPsite Object. Please change quoted value to your site URL. 2: SPSite site = new SPSite( &amp;quot;http://blre3r15-5:3000/sites/PublishingSite&amp;quot; ); 3: SPWeb web = site.OpenWeb(); 4: SPList list = web.Lists[ &amp;quot;Documents&amp;quot; ]; 5: &amp;#160; 6: foreach (SPListItem item in list.Items)...(&lt;a href="http://blogs.msdn.com/navdeepm/archive/2009/11/17/modified-column-in-sharepoint-document-library-is-read-only.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9923571" width="1" height="1"&gt;</content><author><name>navdeepm</name><uri>http://blogs.msdn.com/members/navdeepm.aspx</uri></author></entry><entry><title>Could not load type ‘Microsoft.ContentManagement. WebAuthor.PostingProperties’</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/navdeepm/archive/2009/10/23/could-not-load-type-microsoft-contentmanagement-webauthor-postingproperties.aspx" /><id>http://blogs.msdn.com/navdeepm/archive/2009/10/23/could-not-load-type-microsoft-contentmanagement-webauthor-postingproperties.aspx</id><published>2009-10-23T21:04:47Z</published><updated>2009-10-23T21:04:47Z</updated><content type="html">sometimes you&amp;#160; deploy a new CMS 2002 site and you will see above error message or “could not load type” for CMS pages. It means that page is trying to load find the class but it doesn’t exist. So best tool to troubleshoot this type of issue is Assembly Binding Log Viewer (Fuslogvw.exe) . You can run this tool and request the culprit page in the browser it will let you know that what are assemblies requested and what is the result of the call. In my case, it told me that page was not calling...(&lt;a href="http://blogs.msdn.com/navdeepm/archive/2009/10/23/could-not-load-type-microsoft-contentmanagement-webauthor-postingproperties.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9912234" width="1" height="1"&gt;</content><author><name>navdeepm</name><uri>http://blogs.msdn.com/members/navdeepm.aspx</uri></author></entry><entry><title>Unable to sort the BDC column which contain space</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/navdeepm/archive/2009/10/22/unable-to-sort-the-bdc-column-which-contain-space.aspx" /><id>http://blogs.msdn.com/navdeepm/archive/2009/10/22/unable-to-sort-the-bdc-column-which-contain-space.aspx</id><published>2009-10-22T11:58:50Z</published><updated>2009-10-22T11:58:50Z</updated><content type="html">Let me explain you with an example, If you have table like described below and you would like to show the “Name” field as “First Name”.&amp;#160; Table Name :- employee_test Table description ID&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; NUMBER NAME&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; VARCHAR2(20) LOCATION&amp;#160;&amp;#160;&amp;#160;&amp;#160; VARCAHR2(20) AGE&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; NUMBER Create the view using the following SQL command Create view view_employee as SELECT ID, NAME AS...(&lt;a href="http://blogs.msdn.com/navdeepm/archive/2009/10/22/unable-to-sort-the-bdc-column-which-contain-space.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9911293" width="1" height="1"&gt;</content><author><name>navdeepm</name><uri>http://blogs.msdn.com/members/navdeepm.aspx</uri></author></entry><entry><title>How to login in SharePoint FBA site from another ASP.NET Site ?</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/navdeepm/archive/2009/10/21/how-to-login-in-sharepoint-fba-site-from-another-asp-net-site.aspx" /><id>http://blogs.msdn.com/navdeepm/archive/2009/10/21/how-to-login-in-sharepoint-fba-site-from-another-asp-net-site.aspx</id><published>2009-10-21T14:15:19Z</published><updated>2009-10-21T14:15:19Z</updated><content type="html">If you would like to jump between your ASP.NET site and SharePoint FBA site and don’t want to login again, then you ASP.NET site must contain same viewstate and Event validation of your FBA site . 1: &amp;lt;form name= &amp;quot;Form1&amp;quot; method= &amp;quot;post&amp;quot; action= &amp;quot;http://localhost:1643/CommonAutheticationCookie/NTLMLogIn.aspx?ReturnUrl=%2fCommonAutheticationCookie%2fdefault.aspx&amp;quot; id= &amp;quot;Form1&amp;quot; &amp;gt; 2: &amp;lt;div&amp;gt; 3: &amp;lt;input type= &amp;quot;hidden&amp;quot; name= &amp;quot;__VIEWSTATE&amp;quot;...(&lt;a href="http://blogs.msdn.com/navdeepm/archive/2009/10/21/how-to-login-in-sharepoint-fba-site-from-another-asp-net-site.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9910585" width="1" height="1"&gt;</content><author><name>navdeepm</name><uri>http://blogs.msdn.com/members/navdeepm.aspx</uri></author></entry><entry><title>How to crawl the content of file with the extension “.cs (C-Sharp)”?</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/navdeepm/archive/2009/10/21/how-to-crawl-the-content-of-file-with-the-extension-cs-c-sharp.aspx" /><id>http://blogs.msdn.com/navdeepm/archive/2009/10/21/how-to-crawl-the-content-of-file-with-the-extension-cs-c-sharp.aspx</id><published>2009-10-21T08:09:40Z</published><updated>2009-10-21T08:09:40Z</updated><content type="html">C-Sharp is not a special file it can be read as a text&amp;#160; file. So crawling to this file you won’t require to add the special filter and you can use the same IFilter which used to crawl the text files ({4A3DD7AB-0A6B-43B0-8A90-0D8B0CC36AAB}). But the problem you will face in providing the MimeTypes for this extension. Behind the scene, protocol handler call the IFilter based upon the file MimeTypes, you can provide any text MimeType to call cs IFilter but the MimeTypes should be different from...(&lt;a href="http://blogs.msdn.com/navdeepm/archive/2009/10/21/how-to-crawl-the-content-of-file-with-the-extension-cs-c-sharp.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9910425" width="1" height="1"&gt;</content><author><name>navdeepm</name><uri>http://blogs.msdn.com/members/navdeepm.aspx</uri></author></entry><entry><title>SharePoint 2010 Developer documentation</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/navdeepm/archive/2009/10/20/sharepoint-2010-developer-documentation.aspx" /><id>http://blogs.msdn.com/navdeepm/archive/2009/10/20/sharepoint-2010-developer-documentation.aspx</id><published>2009-10-20T15:28:26Z</published><updated>2009-10-20T15:28:26Z</updated><content type="html">Hey Guys, Good News !!! SharePoint Developer documentation in live on MSDN . Please click on SharePoint 2010 Developer Documentation Now Live on MSDN and read about he SharePoint 2010. Thanks, Navdeep Madan...(&lt;a href="http://blogs.msdn.com/navdeepm/archive/2009/10/20/sharepoint-2010-developer-documentation.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9909965" width="1" height="1"&gt;</content><author><name>navdeepm</name><uri>http://blogs.msdn.com/members/navdeepm.aspx</uri></author></entry><entry><title>You don’t want new instances of your workflow association, so here is the code snippet &amp; it’s API description.</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/navdeepm/archive/2009/10/19/you-don-t-want-new-instances-of-your-workflow-association-so-here-is-the-code-snippet-it-s-api-description.aspx" /><id>http://blogs.msdn.com/navdeepm/archive/2009/10/19/you-don-t-want-new-instances-of-your-workflow-association-so-here-is-the-code-snippet-it-s-api-description.aspx</id><published>2009-10-19T19:40:08Z</published><updated>2009-10-19T19:40:08Z</updated><content type="html">You have installed the new version of a workflow and you don’t want to create the instances of previous association or because of other reasons you don’t want to end users to create new instances of workflow ( Workflow Association). You can remove workflow from UI through UI by selecting “Remove Workflows” under “settings” . Here is the screen shot :- &amp;#160; But if you would like to achieve the SharePoint Object Model then “SPworkflowAssosiation” instance contain the running workflow values in SharePoint....(&lt;a href="http://blogs.msdn.com/navdeepm/archive/2009/10/19/you-don-t-want-new-instances-of-your-workflow-association-so-here-is-the-code-snippet-it-s-api-description.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9909365" width="1" height="1"&gt;</content><author><name>navdeepm</name><uri>http://blogs.msdn.com/members/navdeepm.aspx</uri></author></entry><entry><title>How to add the help link in Top link bar ?</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/navdeepm/archive/2009/09/20/how-to-add-the-help-link-in-top-link-bar.aspx" /><id>http://blogs.msdn.com/navdeepm/archive/2009/09/20/how-to-add-the-help-link-in-top-link-bar.aspx</id><published>2009-09-20T05:57:17Z</published><updated>2009-09-20T05:57:17Z</updated><content type="html">Help is the very important for the end user in SharePoint site.&amp;#160; Some time they will not find the icon on the top of the page.&amp;#160; To make it easily available , you can add “Top link bar “. 1) Go to “Site Actions –&amp;gt; Site Settings” and click on the “top link bar” and type the following JavaScript. &amp;#160; 2) Go to “Site Actions –&amp;gt; Site Settings” and click on the “top link bar” and type the following URL....(&lt;a href="http://blogs.msdn.com/navdeepm/archive/2009/09/20/how-to-add-the-help-link-in-top-link-bar.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9897207" width="1" height="1"&gt;</content><author><name>navdeepm</name><uri>http://blogs.msdn.com/members/navdeepm.aspx</uri></author></entry><entry><title>How to delete old versions of a document from a document library?</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/navdeepm/archive/2009/09/19/how-to-delete-old-versions-of-a-document-from-a-document-library.aspx" /><id>http://blogs.msdn.com/navdeepm/archive/2009/09/19/how-to-delete-old-versions-of-a-document-from-a-document-library.aspx</id><published>2009-09-19T11:56:23Z</published><updated>2009-09-19T11:56:23Z</updated><content type="html">Create a console application and add the reference if Microsoft.SharePoint . Add the web reference of version’s ( http://MossSite/_vti_bin/versions.asmx ) web service. &amp;#160; 1: //Change the SPSite URL. 2: using (SPSite site = new SPSite( http://MossSite/sites/SiteCollection )) 3: { 4: using (SPWeb web = site.OpenWeb()) 5: { 6: //Change the Document Library Name. 7: SPDocumentLibrary library = (SPDocumentLibrary)web.Lists[ &amp;quot;MATTDOCLibrary&amp;quot; ]; 8: foreach (SPListItem item in library.Items)...(&lt;a href="http://blogs.msdn.com/navdeepm/archive/2009/09/19/how-to-delete-old-versions-of-a-document-from-a-document-library.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9897089" width="1" height="1"&gt;</content><author><name>navdeepm</name><uri>http://blogs.msdn.com/members/navdeepm.aspx</uri></author></entry><entry><title>Switch to Edit Site doesn’t work in MCMS 2002</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/navdeepm/archive/2009/09/19/switch-to-edit-site-doesn-t-work-in-mcms-2002.aspx" /><id>http://blogs.msdn.com/navdeepm/archive/2009/09/19/switch-to-edit-site-doesn-t-work-in-mcms-2002.aspx</id><published>2009-09-19T11:32:46Z</published><updated>2009-09-19T11:32:46Z</updated><content type="html">When you click Switch to Edit Site on a published posting in Microsoft Content Management Server (MCMS) 2002 to create content, the page got refreshed, but the page does not switch to edit mode from live mode. Also the Web Author console does not display. This problem may occur because of customization of IIS_CMS folder. MCMS 2002 SP2 patch upgrade this folder and files contain in it. Because of the customization Web Authoring console does not display. To resolve this problem, clear the Internet...(&lt;a href="http://blogs.msdn.com/navdeepm/archive/2009/09/19/switch-to-edit-site-doesn-t-work-in-mcms-2002.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9897084" width="1" height="1"&gt;</content><author><name>navdeepm</name><uri>http://blogs.msdn.com/members/navdeepm.aspx</uri></author></entry><entry><title>Add domain user to all sites and sub-sites as secondary administrator</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/navdeepm/archive/2009/09/19/add-domain-user-to-all-sites-and-sub-sites-as-secondary-administrator.aspx" /><id>http://blogs.msdn.com/navdeepm/archive/2009/09/19/add-domain-user-to-all-sites-and-sub-sites-as-secondary-administrator.aspx</id><published>2009-09-19T11:18:08Z</published><updated>2009-09-19T11:18:08Z</updated><content type="html">If you have to add a site collection administrator, then first option is through user interface. Go to Central Administration site and Click on the “Application Management” tab. Click an option “Site collection administrator” under the “SharePoint Site Management” tab. &amp;#160; You will get redirect to “Site Collection Administrators Page :- &amp;#160; go ahead and add your domain user as a secondary administrator. &amp;#160; Second option is through Stsadm utility. Here is the command you have to run :- and...(&lt;a href="http://blogs.msdn.com/navdeepm/archive/2009/09/19/add-domain-user-to-all-sites-and-sub-sites-as-secondary-administrator.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9897081" width="1" height="1"&gt;</content><author><name>navdeepm</name><uri>http://blogs.msdn.com/members/navdeepm.aspx</uri></author></entry><entry><title>Code Access Security in SharePoint</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/navdeepm/archive/2009/09/19/code-access-security-in-sharepoint.aspx" /><id>http://blogs.msdn.com/navdeepm/archive/2009/09/19/code-access-security-in-sharepoint.aspx</id><published>2009-09-19T02:11:16Z</published><updated>2009-09-19T02:11:16Z</updated><content type="html">Code access security is a mechanism to limit the access of the code to protect the resources and operations. In SharePoint you can have the two level i.e “WSS_Medium” and “WSS_Minimal”. 1: &amp;lt;securityPolicy&amp;gt; 2: &amp;lt;trustLevel name= &amp;quot;WSS_Medium&amp;quot; policyFile= &amp;quot;C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\12\config\wss_mediumtrust.config&amp;quot; /&amp;gt; 3: &amp;lt;trustLevel name= &amp;quot;WSS_Minimal&amp;quot; policyFile= &amp;quot;C:\Program Files\Common Files\Microsoft Shared\Web...(&lt;a href="http://blogs.msdn.com/navdeepm/archive/2009/09/19/code-access-security-in-sharepoint.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9897005" width="1" height="1"&gt;</content><author><name>navdeepm</name><uri>http://blogs.msdn.com/members/navdeepm.aspx</uri></author></entry><entry><title>How to do hang dump analysis?</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/navdeepm/archive/2009/09/18/how-to-do-hang-dump-analysis.aspx" /><id>http://blogs.msdn.com/navdeepm/archive/2009/09/18/how-to-do-hang-dump-analysis.aspx</id><published>2009-09-18T02:43:53Z</published><updated>2009-09-18T02:43:53Z</updated><content type="html">&lt;p&gt;One of my customers facing an interesting issue. He has created a CMS site which slows down after 4 or 5 days. After doing the complete scoping I found that one of the page take 2-3 minutes to load and he has following work-around to temporarily fix the issue. &lt;/p&gt;  &lt;p&gt;1) DO an IISREST. &lt;/p&gt;  &lt;p&gt;2) Delete the application-pool and recreated it again. &lt;/p&gt;  &lt;p&gt;I took the hand dump using the Ad-Plus [&lt;a href="http://www.microsoft.com/whdc/devtools/debugging/default.mspx"&gt;Download&lt;/a&gt;] script . This support article talk more about this tool&amp;#160; &lt;a href="http://support.microsoft.com/kb/286350"&gt;http://support.microsoft.com/kb/286350&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Start a command window and browse to your debuggers directory.&amp;#160; &lt;/p&gt;  &lt;p&gt;&lt;font color="#0000ff" size="2" face="Calibri"&gt;adplus –hang –pn w3wp.exe&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;please attach the correct process id. &lt;/p&gt;  &lt;p&gt;Open the dump in Windbg.exe &lt;/p&gt;  &lt;p&gt;1) Open windbg and open the memory dump (.dmp file) with File/Open Crash dump. &lt;/p&gt;  &lt;p&gt;2) Set up the symbol path :- &lt;/p&gt;  &lt;p&gt;&lt;font color="#0000ff" size="2" face="Calibri"&gt;SRV*c:\symbols*&lt;/font&gt;&lt;a href="http://msdl.microsoft.com/download/symbols"&gt;http://msdl.microsoft.com/download/symbols&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;3) Load sos&amp;#160; &lt;br /&gt;&amp;#160; &lt;font color="#0000ff" size="2" face="Calibri"&gt;.load clr10\sos&lt;/font&gt; &lt;/p&gt;  &lt;p&gt;4) &lt;font color="#0000ff"&gt;&lt;font size="2" face="Calibri"&gt;!analyze –v        &lt;br /&gt;&lt;/font&gt;      &lt;br /&gt;&lt;/font&gt;5) &lt;font color="#0000ff" size="2" face="Calibri"&gt;!sym noisy&lt;/font&gt; [verbose loading of the symbols]&lt;/p&gt;  &lt;p&gt;6) &lt;font color="#0000ff" size="2" face="Calibri"&gt;.symfix c:\symcache&lt;/font&gt; [Fix the symbols path]&lt;/p&gt;  &lt;p&gt;7) &lt;font color="#0000ff" size="2" face="Calibri"&gt;.cordll -ve -u –l&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;8) &lt;font color="#0000ff" size="2" face="Calibri"&gt;!runaway&lt;/font&gt; [to analyze]&lt;/p&gt;  &lt;p&gt;10) &lt;font color="#0000ff" size="2" face="Calibri"&gt;.unload clr10\sos&lt;/font&gt; [Unload the SOS.]&lt;/p&gt;  &lt;p&gt;11) &lt;font size="2"&gt;&lt;font face="Calibri"&gt;.&lt;font color="#0000ff"&gt;chain&lt;/font&gt;&lt;/font&gt;&lt;/font&gt; [to see whether SOS file has been loaded.]&lt;/p&gt;  &lt;p&gt;12) &lt;font color="#0000ff" size="2" face="Calibri"&gt;~* kb 2000&lt;/font&gt; [Examine the native callstacks]&lt;/p&gt;  &lt;p&gt;13) &lt;font color="#0000ff" size="2" face="Calibri"&gt;~* e !clrstack&lt;/font&gt; [Examine the .net callstacks]&lt;/p&gt;  &lt;p&gt;14) &lt;font color="#0000ff" size="2" face="Calibri"&gt;!syncblk&lt;/font&gt; [Determine the ID of the thread owning the lock]&lt;/p&gt;  &lt;p&gt;15) &lt;font color="#0000ff" size="2" face="Calibri"&gt;~10s&lt;/font&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; [move to thread 10, replace 10 with actual thread ID]&lt;/p&gt;  &lt;p&gt;16) &lt;font size="2"&gt;&lt;font face="Calibri"&gt;&lt;font color="#0000ff"&gt;kb 2000&lt;/font&gt;&amp;#160;&lt;/font&gt;&lt;/font&gt;&amp;#160; [examine native stack]&lt;/p&gt;  &lt;p&gt;17) &lt;font color="#0000ff" size="2" face="Calibri"&gt;!clrstack&lt;/font&gt; [examine .net stack] &lt;/p&gt;  &lt;p&gt;After executing the [ &lt;font color="#0000ff" size="2" face="Calibri"&gt;!syncblk&lt;/font&gt; ] you will came to know which thread is locked or in waiting state. Jump to the thread [~10S(Enter the thread number instead of 10)] and look at the .net call stack [ &lt;font color="#0000ff" size="2" face="Calibri"&gt;!clrstack&lt;/font&gt; ]or native call stack[ &lt;font color="#0000ff" size="2" face="Calibri"&gt;kb 2000&lt;/font&gt; ]. It will let you know which function is causing the problem. &lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9896582" width="1" height="1"&gt;</content><author><name>navdeepm</name><uri>http://blogs.msdn.com/members/navdeepm.aspx</uri></author></entry><entry><title>Link and display two SharePoint calendar from SharePoint Designer</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/navdeepm/archive/2009/09/16/link-and-display-two-sharepoint-calendar-from-sharepoint-designer.aspx" /><id>http://blogs.msdn.com/navdeepm/archive/2009/09/16/link-and-display-two-sharepoint-calendar-from-sharepoint-designer.aspx</id><published>2009-09-16T02:18:54Z</published><updated>2009-09-16T02:18:54Z</updated><content type="html">&lt;p&gt;Click here to &lt;a href="https://sharepoint.mindsharpblogs.com/Driskell/Lists/Posts/Post.aspx?List=f73040f2%2D4a3f%2D40c1%2D898d%2D30c4da625cdd&amp;amp;ID=10"&gt;Link and display two calendars in SharePoint Designer&lt;/a&gt; and after this here are the steps to format the list data.&lt;/p&gt;  &lt;p&gt;Firstly, we were getting the xml in the “Modified By”. Here is the screen shot which shows&amp;#160; the same :-&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.msdn.com/blogfiles/navdeepm/WindowsLiveWriter/LinkanddisplaytwoSharePointcalendarfromS_4397/clip_image002_2.gif"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="clip_image002" border="0" alt="clip_image002" src="http://blogs.msdn.com/blogfiles/navdeepm/WindowsLiveWriter/LinkanddisplaytwoSharePointcalendarfromS_4397/clip_image002_thumb.gif" width="599" height="139" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;We have click on the icon on right hand site as presented in the following image :- &lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.msdn.com/blogfiles/navdeepm/WindowsLiveWriter/LinkanddisplaytwoSharePointcalendarfromS_4397/clip_image004_2.gif"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="clip_image004" border="0" alt="clip_image004" src="http://blogs.msdn.com/blogfiles/navdeepm/WindowsLiveWriter/LinkanddisplaytwoSharePointcalendarfromS_4397/clip_image004_thumb.gif" width="712" height="148" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;We will get the “Date Field” selected “Modified By” in the first combo. In the second combo, “Format as” “Text”&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.msdn.com/blogfiles/navdeepm/WindowsLiveWriter/LinkanddisplaytwoSharePointcalendarfromS_4397/clip_image006_2.gif"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="clip_image006" border="0" alt="clip_image006" src="http://blogs.msdn.com/blogfiles/navdeepm/WindowsLiveWriter/LinkanddisplaytwoSharePointcalendarfromS_4397/clip_image006_thumb.gif" width="786" height="126" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Change the “Format as :” to “Rich Text”&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.msdn.com/blogfiles/navdeepm/WindowsLiveWriter/LinkanddisplaytwoSharePointcalendarfromS_4397/clip_image008_2.gif"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="clip_image008" border="0" alt="clip_image008" src="http://blogs.msdn.com/blogfiles/navdeepm/WindowsLiveWriter/LinkanddisplaytwoSharePointcalendarfromS_4397/clip_image008_thumb.gif" width="782" height="212" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Secondly, results are not coming according to current date and time. &lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.msdn.com/blogfiles/navdeepm/WindowsLiveWriter/LinkanddisplaytwoSharePointcalendarfromS_4397/clip_image010_2.gif"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="clip_image010" border="0" alt="clip_image010" src="http://blogs.msdn.com/blogfiles/navdeepm/WindowsLiveWriter/LinkanddisplaytwoSharePointcalendarfromS_4397/clip_image010_thumb.gif" width="608" height="70" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Go to the filter and click on the link&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.msdn.com/blogfiles/navdeepm/WindowsLiveWriter/LinkanddisplaytwoSharePointcalendarfromS_4397/clip_image012_2.gif"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="clip_image012" border="0" alt="clip_image012" src="http://blogs.msdn.com/blogfiles/navdeepm/WindowsLiveWriter/LinkanddisplaytwoSharePointcalendarfromS_4397/clip_image012_thumb.gif" width="654" height="313" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;We can see a grid where a grayed out line there with the text “Using the advanced expression”. It means I have set the formula to get the results using the “Advanced” tab at the bottom.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.msdn.com/blogfiles/navdeepm/WindowsLiveWriter/LinkanddisplaytwoSharePointcalendarfromS_4397/clip_image014_2.gif"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="clip_image014" border="0" alt="clip_image014" src="http://blogs.msdn.com/blogfiles/navdeepm/WindowsLiveWriter/LinkanddisplaytwoSharePointcalendarfromS_4397/clip_image014_thumb.gif" width="522" height="256" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;On the left panel, you can select the column and you have the functions mentioned in the “Select a function category” .You can change the function according to your requirement.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.msdn.com/blogfiles/navdeepm/WindowsLiveWriter/LinkanddisplaytwoSharePointcalendarfromS_4397/clip_image016_2.gif"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="clip_image016" border="0" alt="clip_image016" src="http://blogs.msdn.com/blogfiles/navdeepm/WindowsLiveWriter/LinkanddisplaytwoSharePointcalendarfromS_4397/clip_image016_thumb.gif" width="768" height="474" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9895609" width="1" height="1"&gt;</content><author><name>navdeepm</name><uri>http://blogs.msdn.com/members/navdeepm.aspx</uri></author></entry></feed>