|
द्वारा Udayakumar Ethirajulu , on March 10th, 2008 I have consolidated few links from Microsoft for MOSS 2007 Product Costing.
Microsoft Office SharePoint सर्वर 2007 and Related Technologies pricing
Microsoft Office SharePoint सर्वर 2007 products comparison download
2007 Microsoft Office system pricing and upgrade information
द्वारा Udayakumar Ethirajulu , on January 31st, 2008 I want to share how to rename the web application name in command line administration of MOSS 2007 using STSADM Command.
वाक्य-विन्यास: stsadm -o renameweb -url -newname
उदाहरण: Stsadm -o renameweb -url http://localhost/oldname -newname newname
The above command will rename the web application from oldname to the newname.
द्वारा Udayakumar Ethirajulu , on January 31st, 2008 MOSS has many inbuilt features. The scope of this POC is to integrate Commerce Server 2007 with MOSS 2007 to provide Portal Integrated e-Commerce Application
Configuring MOSS 2007 to Use the Commerce Server Membership Provider As The Basis For User Authentication
The primary tasks are to make the Central Administration and Portal sites hand-shake […]
द्वारा Udayakumar Ethirajulu , on January 6th, 2008 काई में 2007 Approval workflow is available in out of the box itself. Just we need to configure only few steps then we are ready with the approval process.
If the approval workflow is configured the document will be visible only to the contributor and to the approver.
Steps to Configure Content approval workflow
Open […]
द्वारा Udayakumar Ethirajulu , 31 दिसंबर को, 2007 हाय मॉस Devs, आप Treeview के लिए देख रहे पेड़ को देखने में दस्तावेज़ लायब्रेरी प्रदर्शित करने के लिए webpart. TreeView में दस्तावेज़ लायब्रेरी प्रदर्शित करने के लिए उपलब्ध बॉक्स webpart का कोई बाहर नहीं है.
इस कार्य पर काम शुरू कर दिया जब मैं यह googling शुरू कर दिया. मैं लोड करने के लिए जावा स्क्रिप्ट का उपयोग किया जाता है जो कुछ webparts मिला […]
द्वारा Udayakumar Ethirajulu , 11 दिसंबर को, 2007 आज माइक्रोसॉफ्ट सर्विस पैक रिलीज़ 1 for Microsoft Office SharePoint Server 2007 & Windows SharePoint सेवाएँ 3.0
WSS के लिए इसे यहां हासिल करें 3.0 SP1 Get it here for MOSS 2007 SP1 के
द्वारा Udayakumar Ethirajulu , on December 10th, 2007 काई 2007 by default will display the custom error page for all errors occurred in page
In Development phase it will be difficult for the developers to understand the exact error. Change the following Modifications with the web.config of the web application. Then it will display the exception details in the error page.
Turn […]
द्वारा Udayakumar Ethirajulu , दिसम्बर 6 पर, 2007 I got a task to work on developing the windows application which will fetch the List View data from sharepoint and process the data in win forms app.
Previously i used to fetch the data using Lists.asmx,views.asmx.
Now i came to know there is other way to fetch the data from List View.
वाक्य-विन्यास: https://myserver.com/_vti_bin/owssvr.dll?Cmd=Display&List={लिस्ट […]
द्वारा Udayakumar Ethirajulu , on October 18th, 2007 Hi SharePoint Dev’s, Mark Kruger has given the list of free sharepoint webparts
http://www.sharepointblogs.com/mkruger/archive/2007/06/26/free-sharepoint-web-parts-3rd-party.aspx
Check it.
द्वारा 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();
|
|