Browse by Tags
All Tags »
DEV (
RSS)
Writing Custom Web Services for SharePoint As a SharePoint developer, you may want to use some of the capabilities of Windows SharePoint Services to create custom Web services of your own. In this sample I will show you how to use the SharePoint to create a custom Web service inside SharePoint. Writing a Custom Web Service Create new ASP.NET Web Service Application (MySPServices) as shown in the following figure: Next, add new Service Library (MySPServicesLibrary) project to the ASP.NET Application...
Working with Master Pages For many sites, there is a need for reusable way for maintaining a standardized appearance across the entire site. Those sites include common headers, footers and menus. Master Pages in ASP.NET 2.0 consists of two conceptual elements: Master Pages Content Pages At runtime, the ASP.NET engine combines these elements into a single page for the end user. Master Pages is a feature coming in ASP.NET 2.0 , which enables to create sites with a common appearance driven by a single...
SharePoint Site Variations The variations feature in Office SharePoint Server 2007 helps creating multilingual site hierarchy, which makes content available by copying content from the source variation site to each target variation site in the hierarchy. After installing the Hebrew Language Pack , I want to create site variation hierarchy with two sites: English site (Source) Hebrew site (Target) Use the following steps to create SharePoint site variations: Create New Web Application Create Site...
Asynchronous ASP.NET 2.0 Programming One of the coolest features in ASP.NET 2.0 is asynchronous pages. This feature increase scalability by using thread-pool threads more efficiently. With asynchronous pages, a thread which assigned from the thread-pool to process page request, is returned to the thread pool instead of waiting for an I/O operation to complete. This means more threads available to process incoming requests, and when I/O operation is completed, another thread from the pool is guarantee...