নথিপত্র

শৈবাল মধ্যে নথি সম্পর্কীয় তথ্য প্যানেল সক্ষম করুন কিভাবে 2007

By Default the document information panel will not be enabled in document library.

Go to Library Settings

উন্নত সেটিংস ক্লিক করুন

Enable allow management of content types in Advanced Settings.

Click the Document Content Type and click on Document Information Panel settings.

Check […]

Item Updating or Updated Event Occurs twice in Document Library

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.

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 -> অনুমতি স্তর

You can add/edit existing permission level.

Uncheck Browse Directories Permission level.

SharePoint মধ্যে আরএসএস মানুষ থাকার চেষ্টা কিভাবে ব্যবহার

নতুন মানুষ থাকার চেষ্টা পাতা তৈরি করুন.

সম্পাদনা মোডে, মানুষ থাকার চেষ্টা যোগ করুন ক্লিক করুন তারপর গ্যালারি থেকে আরএসএস ভিউয়ার মানুষ থাকার চেষ্টা নির্বাচন.

মানুষ থাকার চেষ্টা মোড সম্পাদনা পরিবর্তন করতে পরিবর্তন ভাগ মানুষ থাকার চেষ্টা ক্লিক করুন, তারপর আরএসএস URL নির্দিষ্ট.

হোম পেজ পরিবর্তন করুন / পানা ল্যান্ডিং পেজ 2007

SharePoint মধ্যে হোম পেজ বা ল্যান্ডিং পেজ পরিবর্তন,

ব্রাউজ করুন

সাইট কর্ম ->

(চেহারা এবং মনে) স্বাগতম পাতা - আপনার পৃষ্ঠা URL নির্দিষ্ট করুন.

Programmatically সাইট সংগ্রহ ব্যবহারকারীদের জন্য সতর্কতা পড়ুন

SPAlerCollection class can be used to get the Alert Collection for the User.

The below code snippet is used to read all alerts registered for the site collection users.

private static void GetAlerts()

{

SPSite currSite = new SPSite(“HTTP://উদয়”);

SPWeb currWeb = currSite.OpenWeb();

SPUserCollection […]

SharePoint মধ্যে সতর্কতা জন্য ব্যবধান সেট করুন 2007

সতর্কতা সম্পত্তি জন্য setproperty ব্যবহার করে সেট করতে পারেন জন্য টাইমার কাজ ব্যবধান সেট করার কাজ অবিলম্বে-সতর্কতা stsadm মধ্যে আদেশ.

সিনট্যাক্স:STSADM -o getproperty -PN পেশা-তাৎক্ষণিক-সতর্কতা -pv <সম্পত্তি মূল্য> -URL <সাইট এর URL টি>

উদাহরণ:STSADM -o getproperty -PN পেশা-তাৎক্ষণিক-সতর্কতা -pv “প্রতি 2 মিনিট” -url http://উদয়

[…]

SharePoint মধ্যে ফোরাম লাইব্রেরী Programmatically মধ্যে InfoPath এক্সএমএল ফাইল সম্পাদনা কিভাবে 2007

কোড স্নিপেট নীচের লাইন InfoPath XML রেকর্ড আপডেট করা হয়(ফাইল)

SPWeb _web = SPContext.Current.Web; SPList _list = _web.Lists[“SampleFormLib”];

MemoryStream myInStream = নতুন MemoryStream(item.File.OpenBinary()); XmlTextReader পাঠক = নতুন XmlTextReader(myInStream);

XmlDocument ডক = নতুন XmlDocument(); doc.Load(পাঠক);

reader.Close(); myInStream.Close();

XmlNamespaceManager nameSpaceManager = নতুন XmlNamespaceManager(doc.NameTable); nameSpaceManager.AddNamespace(“আমার”, “HTTP://schemas.microsoft.com/office/infopath/2003/myXSD/2009-06-11T12:44:57“);

doc.DocumentElement.SelectSingleNode(“আমার:অবস্থা”, nameSpaceManager).দ্য ইনার শিরোনাম = “সংরক্ষিত”; […]