|
द्वारा Udayakumar Ethirajulu , फ़रवरी 2 पर, 2015 हम में से ज्यादातर में टक्कर यह होगा बहुत आम परिदृश्य. आप अलग अलग वातावरण में इसे होस्ट करने के लिए अपने वेब सामने अंत क्लोन करने के लिए आवश्यकता हो सकती है. क्लोन उदाहरण बहाल करने के बाद आप पा सकते हैं अपने नए सर्वर पुराने सर्वर नाम को संदर्भित करता है.
में stsadm का उपयोग कर सर्वर नाम अद्यतन करने के लिए त्वरित और आसान तरीका […]
द्वारा Udayakumar Ethirajulu , दिसम्बर 1 पर, 2009 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, SharePoint 2007, SharePoint Customization | श्रेणी: काई 2007 |
द्वारा Udayakumar Ethirajulu , on November 26th, 2009 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 […]
द्वारा Udayakumar Ethirajulu , on November 26th, 2009 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 2007, SharePoint ऑब्जेक्ट मॉडल | श्रेणी: काई 2007, SharePoint ऑब्जेक्ट मॉडल |
द्वारा Udayakumar Ethirajulu , on November 10th, 2009 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 […]
द्वारा Udayakumar Ethirajulu , on November 8th, 2009
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, SharePoint ऑब्जेक्ट मॉडल |
द्वारा Udayakumar Ethirajulu , नवम्बर 1, 2009
यदि आप त्रुटि मुठभेड़ “इस उत्पाद के लिए परीक्षण अवधि समाप्त हो गया है” परीक्षण से / मानक उद्यम sharepoint में संस्करण के लिए लाइसेंस नवीनीकरण के बाद.
से अपने अनुप्रयोग पूल खाते बदलें “नेटवर्क सेवा” डोमेन खाते.
द्वारा Udayakumar Ethirajulu , अक्टूबर 22 को, 2009 डिफ़ॉल्ट रूप से दस्तावेज़ जानकारी पैनल दस्तावेज़ लायब्रेरी में सक्षम नहीं किया जाएगा.
लाइब्रेरी सेटिंग में जाएं
उन्नत सेटिंग्स क्लिक करें
उन्नत सेटिंग्स में सामग्री प्रकार के प्रबंधन की अनुमति देने के लिए सक्षम करें.
दस्तावेज़ सामग्री प्रकार क्लिक करें और दस्तावेज़ जानकारी फलक सेटिंग्स पर क्लिक करें.
Check […]
द्वारा Udayakumar Ethirajulu , 21 वीं अक्टूबर को, 2009
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 […]
द्वारा Udayakumar Ethirajulu , on October 19th, 2009 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.
|
|