|
द्वारा 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 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 , 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 3rd, 2009
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 […]
द्वारा Udayakumar Ethirajulu , on October 1st, 2009 The below lines of code snippet is to update the infopath xml record(file)
SPWeb _web = SPContext.Current.Web; SPList _list = _web.Lists[“SampleFormLib”];
MemoryStream myInStream = new MemoryStream(item.File.OpenBinary()); XmlTextReader reader = new XmlTextReader(myInStream);
XmlDocument doc = new XmlDocument(); doc.Load(reader);
reader.Close(); myInStream.Close();
XmlNamespaceManager nameSpaceManager = new XmlNamespaceManager(doc.NameTable); nameSpaceManager.AddNamespace(“my”, “http://schemas.microsoft.com/office/infopath/2003/myXSD/2009-06-11T12:44:57“);
doc.DocumentElement.SelectSingleNode(“my:Status”, nameSpaceManager).InnerText = “Saved”; […]
द्वारा Udayakumar Ethirajulu , 12 जून को, 2009
यदि आप ऑब्जेक्ट मॉडल के माध्यम से / घटनाओं WebParts में या किसी भी माध्यम से InfoPath xml फ़ाइल अद्यतन करने की कोशिश.
जबकि Item.Update execting() नीचे त्रुटि का कारण होगा. While updating the InfoPath xml file in ListItem the file and ListItem object getting disconnected.
Item.File.Update() अपने मुद्दे को हल करेंगे.
StackTrace […]
द्वारा Udayakumar Ethirajulu , फ़रवरी 16 पर, 2009 Office SharePoint सर्वर की वास्तविक शक्ति 2007 और Windows SharePoint सेवाएँ 3.0 वे बेहद व्यापार की जरूरत की एक विस्तृत विविधता को पूरा करने के लिए अनुकूलित किया जा सकता है कि. SharePoint के बहुरूपिया प्रकृति अपने सबसे शक्तिशाली सुविधा और इसकी सबसे दुर्जेय एक ही बार में है; the complexity of your SharePoint environment can increase by orders of […]
द्वारा Udayakumar Ethirajulu , 17 सितंबर को, 2008 मैं यह नीचे है, जबकि ऑब्जेक्ट मॉडल के माध्यम प्रोफ़ाइल अपडेट.
अद्यतन वर्तमान में प्राप्त अनुरोधों पर अस्वीकार कर रहे हैं. एक पाने के लिए पर अद्यतन अनुमति, 'AllowUnsafeUpdates सेट’ SPWeb पर संपत्ति
Web.AllowUnsafeUpdate = true जोड़ें; इस मुद्दे को हल करने के लिए.
द्वारा Udayakumar Ethirajulu , on June 28th, 2007 हाय Devs,
The Below is the Sample Code to update the Sharepoint list content programmatically by using SharePoint Object Model.
SPSite Site = new SPSite(“http://लोकलहोस्ट:21000”); SPWeb Web = Site.OpenWeb(); SPList List = Web.Lists[“Address Book”]; SPListItem ListItem = List.GetItemById(0);
string FullName = string.Empty;
FullName = ListItem[“FirstName”].ToString() + ListItem[“LastName”].ToString(); SPListItem[“FullName”] = FullName; ListItem.Update();
|
|