How to Change the Home Page / Landing Page in MOSS 2007

To Change the Home Page or Landing Page in SharePoint,

Browse to

साइट क्रियाएँ ->

(Look And Feel) Welcome Page – Specify your Page URL.

Programmatically Read Alerts for Users in Site Collection

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
शून्य GetAlerts()

{


SPSite currSite = नया
SPSite(“http://उदय”);


SPWeb currWeb = currSite.OpenWeb();


SPUserCollection collUsers = currWeb.Users;


कोशिश

{


foreach (SPUser usr में collUsers)

{


Console.WriteLine(“Alerts for the User : “ + usr.Name);


foreach (SPAlert alrt में usr.Alerts)

{


Console.WriteLine(alrt.Item.Title + ” –> “ + alrt.AlertFrequency);

}

}

}


पकड़

{

}


Console.ReadLine();

}

}



How to set the Interval for Alerts in SharePoint 2007

To set the timer job interval for alerts can set by using the setproperty for the property job-immediate-alerts command in stsadm.

वाक्य-विन्यास:
STSADM -o getproperty -pn job-immediate-alerts –pv <property value> -url <साइट का URL>

उदाहरण:
STSADM -o getproperty -pn job-immediate-alerts –pv “every 2 minutes” -url http://उदय


SharePoint में फोरम लाइब्रेरी प्रोग्राम में InfoPath एक्सएमएल फाइल को संपादित करने के लिए कैसे 2007

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”;
doc.DocumentElement.SelectSingleNode(“my:SaveDate”, nameSpaceManager).InnerText = DateTime.Today.ToString();
System.Text.ASCIIEncoding encoding = new System.Text.ASCIIEncoding();
SPFile newFile = _web.Folders[“SampleFormLib”].Files.Add(item.File.Name.ToString(), (encoding.GetBytes(doc.OuterXml)), सच);
item.File.Update();

आप item.File.Update सुनिश्चित करें निष्पादित करें() परिवर्तन की पुष्टि करने के लिए (Item.Update पर अमल करते हुए मैं त्रुटियों मिला() and spent couple of hours to find 🙁 )

अलर्ट के लिए टाइमर कार्य अंतराल जाओ

प्राप्त करने के लिए अलर्ट के लिए टाइमर कार्य अंतराल stsadm में getProperty कमांड के प्रयोग के द्वारा प्राप्त किया जा सकता है.

वाक्य-विन्यास:
Stsadm -o getProperty -pn कार्य तत्काल-अलर्ट -url <साइट का URL>

उदाहरण:

STSADM -o getproperty -pn job-immediate-alerts -url http://uday
			

डाउनलोड SharePoint 2010 डेवलपर दस्तावेज़ीकरण

क्या आप SharePoint के लिए देख रहे हैं 2010 डेवलपर दस्तावेज़, you can download it from यहाँ

SharePoint में नए आइकन संकेतक के लिए निर्धारित अवधि

SharePoint में नई आइकन के लिए अवधि निर्धारित करने के लिए (नए आइटम के बगल से पता चलता है जो सूचक) SharePoint के WebApplication वस्तु का उपयोग और के लिए मूल्य निर्धारित DaysToShowNewIndicator.



SPWebApplication Webapp = SPWebApplication.खोजें(नया
उड़ी(WebAppURL.Text));

WebApp.DaysToShowNewIndicator = 3;

WebApp.Update();

माइक्रोसॉफ्ट ऑफिस 2010 तकनीकी पूर्वावलोकन

आप कार्यालय के तकनीकी पूर्वावलोकन प्रतिलिपि प्राप्त करना चाहते हैं 2010 यहां रजिस्टर

SharePoint 2010 तंत्र की ज़रूरते

SharePoint Team has announced the preliminary System Requirements for SharePoint 2010.

  1. SharePoint सर्वर 2010 होगा 64-बिट केवल.
  2. SharePoint सर्वर 2010 64-बिट Windows सर्वर की आवश्यकता होगी 2008 या 64-बिट Windows सर्वर 2008 R2.
  3. SharePoint सर्वर 2010 64-बिट एसक्यूएल सर्वर की आवश्यकता होगी 2008 या 64-बिट एसक्यूएल सर्वर 2005.

Microsoft SharePoint कार्यस्थान 2010

यहाँ पर वीडियो की जाँच करें: क्या SharePoint के कार्यक्षेत्र में नया क्या है 2010(पूर्व में माइक्रोसॉफ्ट कार्यालय ग्रूव)