SharePoint में बिल्डिंग WebPart 2010 वीडियो स्क्रीन कास्ट

Microsoft SharePoint विकास टीम डेवलपर्स के लिए निम्नलिखित स्क्रीन डाले जारी किया है.

Screencast के लिए यहाँ क्लिक करें

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:

का उपयोग करते हुए System;

का उपयोग करते हुए System.Runtime.InteropServices;

का उपयोग करते हुए System.Web.UI;

का उपयोग करते हुए System.Web.UI.WebControls;

का उपयोग करते हुए System.Web.UI.WebControls.WebParts;

का उपयोग करते हुए System.Xml.Serialization;

का उपयोग करते हुए Microsoft.SharePoint;

का उपयोग करते हुए Microsoft.SharePoint.WebControls;

का उपयोग करते हुए Microsoft.SharePoint.WebPartPages;

का उपयोग करते हुए Microsoft.SharePoint.Utilities;

namespace ResourceFile

{

[Guid(“fc643df7-8836-41bf-913f-662ed57e659a”)]


सार्वजनिक
class
ResourceCollection : System.Web.UI.WebControls.WebParts.WebPart

{


तार FirstName;


तार LastName;


सार्वजनिक ResourceCollection()

{

}


protected
override
शून्य CreateChildControls()

{


base.CreateChildControls();


uint lang = SPContext.Current.Web.Language;

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

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

}


protected
override
शून्य Render(HtmlTextWriter writer)

{

writer.Write(“Value of First Name from Resource File : “ + FirstName);

writer.Write(“Value of Last Name from Resource File : “ + LastName);

}

}

}

SharePoint के लिए टोपोलॉजी 2010

SharePoint पर टेकनेट संसाधन 2010 टोपोलॉजी मॉडल निम्नलिखित बताते हैं:

  • Read about how the new services model applies to physical topologies
  • Review detailed guidance on which services to start on farm servers
  • See sample topologies for small, मध्यम, बड़ा वातावरण

SharePoint के लिए यहाँ से डाउनलोड करें 2010 Topologies Model from Technet

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

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

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

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

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

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

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

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

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

हमेशा दस्तावेज़ जानकारी पैनल सक्रिय करने का विकल्प शो की जाँच.

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

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
में BeforeProperties और AfterProperties, if the both values are null then the event is triggered by check in else the event is triggered by other actions.

if (properties.AfterProperties[“vti_sourcecontrolcheckedoutby”] == null && properties.BeforeProperties[“vti_sourcecontrolcheckedoutby”] != null)

{

//This is when the update event is triggered by check-in.

}

else

{

//This is triggered by events other than check-in action.

}

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.

How to Restrict the Users to Edit from SharePoint Designer

Permission Level for the user or group can be modified to restrict the user to edit in SharePoint designer.

साइट सेटिंग्स -> Advanced Permissions

Click Advanced Permissions, Select Settings -> Permission Levels

You can add/edit existing permission level.

Uncheck Browse Directories Permission level.

How to Use RSS WebPart in SharePoint

Create New WebPart Page.

In Edit Mode, Click add WebPart then select RSS Viewer WebPart from gallery.

Click Modify Shared WebPart to change to Edit mode of WebPart, then specify the RSS URL.