Welcome to MSDN Blogs
Sign in
|
Join
|
Help
Tj's TechBlog
SharePoint Development
This Blog
About
Email
Syndication
RSS 2.0
Atom 1.0
Search
Tags
No tags have been created or used yet.
Recent Posts
Code Snippet to remove duplicate workflow associations from a content type
Code snippet to download the files along with versions from SPS 2003 document library.
Code snippet to add / modify columns in a list
Code sample to aggregate the text from "append changes" column to Multiline text field.
Ways to pass security credentials to web service call
Archives
December 2009 (2)
September 2009 (6)
June 2009 (12)
December 2008 (10)
June 2008 (8)
June 2009 - Posts
Monday, June 01, 2009 10:19 PM
How to: Enable Edit option for non anonymous comments in blogs
We have implemented an internal blog site using the MOSS 2007 blog template. One of the requirements was to support anonymous comments. Since this is not an out-of-the-box feature, we searched and found a solution on the Microsoft SharePoint Team Blog
Posted by
TejasRathod
|
0 Comments
Monday, June 01, 2009 10:13 PM
Resolution: Problems with Ajax development/ Page does post back
If the you have applied bluband.master then we need to do changes in bluband.master per the solution step [2] [1] Webpart change Add following code in your webpart and call it in CreateChildControls //in CreateChildControls method //Fix for the UpdatePanel
Posted by
TejasRathod
|
0 Comments
Monday, June 01, 2009 10:03 PM
Resolution: Trouble setting appropriate permissions on SharePoint user
We wanted to setup Created by and Modified by fields for each and every item in the site programmatically without using STSADM command. Resolution Through object model you can back up the created by and modified by fields. You can set the values for the
Posted by
TejasRathod
|
0 Comments
Monday, June 01, 2009 9:54 PM
Resolution: Workflow is not loading the newer version of definition file.
Some times visual studio loads the older version of the workflow definition while debugging, even though you might have deleted an activity from the workflow, when you debug the code the definition file shows the older version where we the old activity
Posted by
TejasRathod
|
0 Comments
Monday, June 01, 2009 9:45 PM
Resolution: Search.asmx returns no result for custom query
Search.asmx returns no result (ERROR_NO_RESULTS_FOUND) for custom query. Cause Search permission settings were required to be properly configured. Resolution Initially we checked ifilters for PDF document. They were properly installed on
Posted by
TejasRathod
|
0 Comments
Monday, June 01, 2009 9:32 PM
Resolution: SharePoint throws an error while adding to lists
Cause Column name's internal name is different than the column name Resolution We modified the list column names in the code sample by checking the actual column names from the list setting and after that we were able to add new items in the list.
Posted by
TejasRathod
|
0 Comments
Monday, June 01, 2009 9:20 PM
Resolution: SendEmailNotification=true does not send an email
SendEmailNotification=true does not send an email, it was not sending email on time. Cause There are two different methods on which SendEmailNotification=true and SendEmailActivity work. Details 1. I noticed that I was able to get the
Posted by
TejasRathod
|
0 Comments
Monday, June 01, 2009 9:13 PM
Resolution: Issue - Error 403 - Forbidden while connecting to OOB web service on forms based authenticated sites
When you connect to the web service that is running in FBA site, you get the 403 - forbidden error Resolution 1. Extend the FBA web application to a new application that is set up to use NTLM. then set up an NT user with full
Posted by
TejasRathod
|
1 Comments
Monday, June 01, 2009 9:05 PM
Resolution: Issue with upgrading the schema.xml for a library
Issue The issue was about upgrading the schema.xml for a library. If we do not do any change in document library settings then it uses schema.xml file but when we create a column in document library it stops using schema.xml file thereafter. Details
Posted by
TejasRathod
|
0 Comments
Monday, June 01, 2009 8:29 PM
How To: Retrieve a document's content type classification from a query
Issue <QueryPacket xmlns="urn:Microsoft.search.Query"><Query><Context><QueryText language='en-us' type='MSSQLFT'>SELECT TITLE,FILENAME,LASTMODIFIEDTIME,PATH,CONTENTTYPE,AUTHOR,DESCRIPTION,WRITE,RANK,SIZE,ISDOCUMENT,SITENAME
Posted by
TejasRathod
|
0 Comments
Monday, June 01, 2009 8:17 PM
How To: Add a permission group in the document library's folders
This is the snippet which will add a permission group in the document library’s folders. 1: using System; 2: using System.Collections.Generic; 3: using System.Text; 4: using Microsoft.SharePoint; 5: 6: namespace ConsoleApplication1 7: { 8: class Program
Posted by
TejasRathod
|
0 Comments
Monday, June 01, 2009 8:15 PM
How To: Hide the "Delete this site" link from the site settings page
You can use a custom feature to hide the link. Below is a sample Feature.xml (please note the current scoped of this feature is set to the Farm level and can easily be changed) <?xml version="1.0" encoding="utf-8"?> <Feature
Posted by
TejasRathod
|
0 Comments