काई 2007 Pricing & Costing Info

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

काई 2007 Rename the Web Application Name

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.

कॉमर्स सर्वर 2007 Integration with MOSS 2007

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 […]

काई में सामग्री अनुमोदन वर्कफ़्लो 2007

काई में 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 […]

काई में ट्री दृश्य दस्तावेज़ लाइब्रेरी 2007

हाय मॉस Devs, आप Treeview के लिए देख रहे पेड़ को देखने में दस्तावेज़ लायब्रेरी प्रदर्शित करने के लिए webpart. TreeView में दस्तावेज़ लायब्रेरी प्रदर्शित करने के लिए उपलब्ध बॉक्स webpart का कोई बाहर नहीं है.

इस कार्य पर काम शुरू कर दिया जब मैं यह googling शुरू कर दिया. मैं लोड करने के लिए जावा स्क्रिप्ट का उपयोग किया जाता है जो कुछ webparts मिला […]

काई 2007 & WSS 3.0 सर्विस पैक 1

आज माइक्रोसॉफ्ट सर्विस पैक रिलीज़ 1 for Microsoft Office SharePoint Server 2007 & Windows SharePoint सेवाएँ 3.0

WSS के लिए इसे यहां हासिल करें 3.0 SP1 Get it here for MOSS 2007 SP1 के

Turn Off UnExpected Error Occurred in MOSS 2007 To Display Exception Detail

काई 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 […]

प्रोग्राम सूची पढ़ें & SharePoint में सामग्री देखें

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={लिस्ट […]

Free SharePoint Web Parts

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.

प्रोग्राम SharePoint में अद्यतन सूची सामग्री

हाय 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();