अपडेट URL SharePoint सर्वर क्लोनिंग के बाद

हम में से ज्यादातर में टक्कर यह होगा बहुत आम परिदृश्य. आप अलग अलग वातावरण में इसे होस्ट करने के लिए अपने वेब सामने अंत क्लोन करने के लिए आवश्यकता हो सकती है. क्लोन उदाहरण बहाल करने के बाद आप पा सकते हैं अपने नए सर्वर पुराने सर्वर नाम को संदर्भित करता है.

में stsadm का उपयोग कर सर्वर नाम अद्यतन करने के लिए त्वरित और आसान तरीका […]

How to Create Custom Menu Item in Site Actions

The below sample feature creates new menu item in Site Actions menu, Please replace the GUID in the below code.

Sample Feature File

<?xml version=”1.0″ encoding=”utf-8″?>

<Feature

Id=”<GUID>”

Title=”Custom Menu Item”

Description=” ”

1 दिसंबर, 2009 | टैग: , , | श्रेणी: काई 2007 | एक टिप्पणी

TreeView Doc Lib V 2.0 in CodePlex

I have released the next version of TreeView Document Library WebPart for SharePoint 2007.

Added features in this release:

Automatically populates the list of document libraries in dropdownlist in toolpart Collapsed TreeView can be managed from toolpart property Automatically shows the appropriate icons for the files in document library

WebPart included […]

Programmatically Retrieve List of Document Libraries

The following code snippet is used to retrieve the list of document libraries.

SPWeb _web = SPContext.Current.Web;

SPListCollection ListColl = _web.Lists;

foreach (SPList _lst in ListColl)

{

if (_lst.BaseTemplate == SPListTemplateType.DocumentLibrary)

November 26th, 2009 | टैग: , , | श्रेणी: काई 2007, SharePoint ऑब्जेक्ट मॉडल | एक टिप्पणी छोड़ दो

WSS 3.0 Application Templates Grouped by Business Area

If you are looking for free application template, which suites your business area, read this resource on TechNet. It has list of 40 Application templates grouped by the following business category.

Business Management/Finance Human Resources Operations/IT Project Tracking/Product Management Sales/Marketing Specialized/Verticals […]

How to Use Resource File in SharePoint 2007

Create Resource file using Visual Studio IDE

Copy the resource file into 12 hive resource folder

GetLocalized method from SPUtility to read the values from resource file

वाक्य-विन्यास:

SPUtility.GetLocalizedString(“$Resources:<<ResourceFileName,ResourceKeyName>>”, “<<ResourceFileName>>”, lang);

उदाहरण:

SPUtility.GetLocalizedString(“$Resources:MyResources,FirstName”, “MyResources”, lang);

Sample Source:

November 8th, 2009 | टैग: , , | श्रेणी: काई 2007, SharePoint ऑब्जेक्ट मॉडल | एक टिप्पणी

काई - इस उत्पाद के लिए परीक्षण अवधि समाप्त हो गया है 2007 त्रुटि

यदि आप त्रुटि मुठभेड़ “इस उत्पाद के लिए परीक्षण अवधि समाप्त हो गया है” परीक्षण से / मानक उद्यम sharepoint में संस्करण के लिए लाइसेंस नवीनीकरण के बाद.

से अपने अनुप्रयोग पूल खाते बदलें “नेटवर्क सेवा” डोमेन खाते.

काई में कैसे सक्षम करने के लिए दस्तावेज़ जानकारी फलक 2007

डिफ़ॉल्ट रूप से दस्तावेज़ जानकारी पैनल दस्तावेज़ लायब्रेरी में सक्षम नहीं किया जाएगा.

लाइब्रेरी सेटिंग में जाएं

उन्नत सेटिंग्स क्लिक करें

उन्नत सेटिंग्स में सामग्री प्रकार के प्रबंधन की अनुमति देने के लिए सक्षम करें.

दस्तावेज़ सामग्री प्रकार क्लिक करें और दस्तावेज़ जानकारी फलक सेटिंग्स पर क्लिक करें.

Check […]

आइटम को अपडेट करने या अद्यतन की गई इवेंट दस्तावेज़ लायब्रेरी में दो बार होता है

Item Updating or Item Updated Event in SharePoint 2007 occurs twice, if require checkout option is enabled for document library.

I found the following workaround from Microsoft Support for this issue.

Check the value of vti_sourcecontrolcheckedoutby in BeforeProperties and AfterProperties, if the both values are null then the event […]

How to Find the SharePoint Version Installed in System

To find the installed version of SharePoint in system,

Browse to Central Administration -> संचालन -> Servers in Farm [Topology and Services]

Version information will be displayed for each and every server.