Size: px
Start display at page:

Download ""

Transcription

1 Using NetAdvantage 2005 Volume 2 elements in Windows Sharepoint Services Web Parts Microsoft Windows Sharepoint Services (WSS) is a powerful web-based portal package that many companies have adopted as a means of communication and collaboration in their organization. WSS works by presenting users a series of Web Parts organized into a single web page. Web Parts deliver the necessary information to end users, and allow them to create customized interfaces containing the key information unique to each user. Web Parts are also a key feature of WSS easy to use extensibility model. This model gives developers the power to create their own custom Web Parts using ASP.NET and plug them directly into the WSS framework. Developers can utilize the power of the NetAdvantage ASP.NET elements to create highly customized, and powerful custom Web Parts for their WSS based collaboration portals. This article shows you how you can create a simple Web Part that contains elements from the NetAdvantage 2005 Volume 2 toolset, and then deploy the Web Part to a WSS server. Creating a Simple Web Part Creating custom Web Parts for WSS is a simple task, consisting of two basic steps: creating a Web Part Library in Visual Studio.NET, and deploying the library to your WSS server. Before starting to create your first Web Part, it is recommended that you download and install the Sharepoint Web Part Templates for Visual Studio.NET. These Visual Studio project templates greatly simply creating Web Parts by providing you with a complete stub class from which you can start creating your custom Web Part. In addition to installing the Templates, before you get started with this articles sample, it is recommended that you read and understand the Creating a Basic Web Part topic on the MSDN website. In this article, you will see how to build a simple Web Part that adds several different server controls, including a TextBox, Button, Calendar and UltraWebTree control to the Web Part. The UltraWebTree will be populated with several sample nodes. To get started, simply select the Web Part Library from Visual Studio. This project template includes a stub Web Part class, as well as the DWP file used to load the Web Part into Sharepoint.

2 The following code listing demonstrates how to create the sample Web Part. VB Imports System Imports System.ComponentModel Imports System.Web.UI Imports System.Web.UI.WebControls Imports System.Xml.Serialization Imports Microsoft.SharePoint Imports Microsoft.SharePoint.Utilities Imports Microsoft.SharePoint.WebPartPages Description for WebPart1. <DefaultProperty("Text"), _ ToolboxData("<0:WebPart1 runat=server></0:webpart1>"), _ XmlRoot(Namespace:="WebPartLibrary2")> _ Public Class WebPart1 Inherits Microsoft.SharePoint.WebPartPages.WebPart Private Const _defaulttext As String = "" Private table As Table Private webtree As Infragistics.WebUI.UltraWebNavigator.UltraWebTree Private textbox As TextBox Private button As Button Private calendar As Calendar Dim _text As String = _defaulttext <Browsable(True), Category("Miscellaneous"), _ DefaultValue(_defaultText), WebPartStorage(Storage.Personal), _ FriendlyName("Text"), Description("Text Property")> _ Property [Text]() As String Get Return _text End Get Set(ByVal Value As String) _text = Value End Set End Property Render this Web Part to the output parameter specified. Protected Overrides Sub RenderWebPart( _ ByVal output As System.Web.UI.HtmlTextWriter)

3 Try output.write(spencode.htmlencode(text)) Render the individual controls being added to the Web Form table.rendercontrol(output) Catch exc As Exception output.write(exc.message + exc.source + exc.stacktrace) End Try End Sub Protected Overrides Sub CreateChildControls() MyBase.CreateChildControls() table = New Table table.gridlines = GridLines.Both table.borderwidth = Unit.Pixel(0) table.width = Unit.Percentage(100) table.height = Unit.Percentage(100) table.rows.add(new TableRow) table.rows.add(new TableRow) table.rows(0).cells.add(new TableCell) table.rows(0).cells.add(new TableCell) table.rows(1).cells.add(new TableCell) table.rows(1).cells.add(new TableCell) Add a WebTree to the Controls collection webtree = New Infragistics.WebUI.UltraWebNavigator.UltraWebTree webtree.id = "UltraWebTree1" webtree.expandimage = "ig_treeplus.gif" webtree.collapseimage = "ig_treeminus.gif" table.rows(0).cells(0).width = Unit.Pixel(120) table.rows(0).cells(0).verticalalign = VerticalAlign.Top table.rows(0).cells(0).controls.add(webtree) Add a TextBox to the Controls collection textbox = New TextBox textbox.id = "TextBox1" table.rows(1).cells(1).controls.add(textbox) Add a Button to the Controls collection button = New Button button.id = "Button1"

4 button.text = "Submit" table.rows(1).cells(1).controls.add(button) Add a Calendar to the Controls collection calendar = New Calendar calendar.id = "Calendar1" calendar.selecteddate = System.DateTime.Now table.rows(0).cells(1).controls.add(calendar) If (Not Page.IsPostBack) Then Add several tree nodes to the WebTree You could also create the nodes by binding the tree to a data source, or by enumerating a collection and recursivly adding nodes Dim node As Infragistics.WebUI.UltraWebNavigator.Node node = webtree.nodes.add("root1") node.nodes.add("child1") node = webtree.nodes.add("root2") node.nodes.add("child2") node = webtree.nodes.add("root3") node.nodes.add("child3") node = webtree.nodes.add("root4") node.nodes.add("child4") End If Controls.Add(table) End Sub End Class

5 C# using System; using System.ComponentModel; using System.Web.UI; using System.Web.UI.WebControls; using System.Xml.Serialization; using Microsoft.SharePoint; using Microsoft.SharePoint.Utilities; using Microsoft.SharePoint.WebPartPages; namespace WebPartLibrary1 /// <summary> /// Description for WebPart1. /// </summary> [DefaultProperty("Text"), ToolboxData("<0:WebPart1 runat=server></0:webpart1>"), XmlRoot(Namespace="WebPartLibrary1")] public class WebPart1 : Microsoft.SharePoint.WebPartPages.WebPart private const string defaulttext = ""; private Table table; private Infragistics.WebUI.UltraWebNavigator.UltraWebTree webtree; private TextBox textbox; private Button button; private Calendar calendar; private string text = defaulttext; [Browsable(true), Category("Miscellaneous"), DefaultValue(defaultText), WebPartStorage(Storage.Personal), FriendlyName("Text"), Description("Text Property")] public string Text get return text; set text = value;

6 /// <summary> /// Render this Web Part to the output parameter specified. /// </summary> /// <param name="output"> The HTML writer to write out to </param> protected override void RenderWebPart(HtmlTextWriter output) try output.write(spencode.htmlencode(text)); //Render the individual controls being added to the Web Form table.rendercontrol(output); catch (Exception exc) output.write(exc.message); /// <summary> /// /// </summary> protected override void CreateChildControls() base.createchildcontrols (); table = new Table(); table.gridlines=gridlines.both; table.borderwidth=unit.pixel(0); table.width=unit.percentage(100); table.height=unit.percentage(100); table.rows.add(new TableRow()); table.rows.add(new TableRow()); table.rows[0].cells.add(new TableCell()); table.rows[0].cells.add(new TableCell()); table.rows[1].cells.add(new TableCell()); table.rows[1].cells.add(new TableCell()); //Add a WebTree to the Controls collection webtree=new Infragistics.WebUI.UltraWebNavigator.UltraWebTree(); webtree.id="ultrawebtree1"; webtree.expandimage="ig_treeplus.gif"; webtree.collapseimage="ig_treeminus.gif"; table.rows[0].cells[0].width=unit.pixel(120);

7 table.rows[0].cells[0].verticalalign=verticalalign.top; table.rows[0].cells[0].controls.add(webtree); //Add a TextBox to the Controls collection textbox=new TextBox(); textbox.id="textbox1"; table.rows[1].cells[1].controls.add(textbox); //Add a Button to the Controls collection button=new Button(); button.id="button1"; button.text="submit"; table.rows[1].cells[1].controls.add(button); //Add a Calendar to the Controls collection calendar=new Calendar(); calendar.id="calendar1"; calendar.selecteddate=system.datetime.now; table.rows[0].cells[1].controls.add(calendar); if (!Page.IsPostBack) //Add several tree nodes to the WebTree //You could also create the nodes by binding // the tree to a data source, or by enumerating // a collection and recursivly adding nodes Infragistics.WebUI.UltraWebNavigator.Node node; node=webtree.nodes.add("root1"); node.nodes.add("child1"); node=webtree.nodes.add("root2"); node.nodes.add("child2"); node=webtree.nodes.add("root3"); node.nodes.add("child3"); node=webtree.nodes.add("root4"); node.nodes.add("child4"); Controls.Add(table);

8 Once you enter the code for the Web Part you need to create a Strong Name Key for the assembly. WSS requires that all Web Part assemblies it hosts be strongly named. To create a key for your Web Part assembly, simply use the command line sn.exe utility included with the.net SDK. sn -k c:\keypair.snk Once you have created the key, you need to modify the AssemblyKeyFile attribute found in the AssemblyInfo.cs file included in your Web Part Library project. [assembly: AssemblyKeyFile("c:\\keypair.snk")] Once this attribute has been modified, the next time you build the web Part Library project, the resulting assembly will contain a strong name, allowing you to deploy it to Sharepoint. Configuring Sharepoint 2003 Once you have completed creating your WSS Web Part assembly, you need to configure your WSS server so that the assembly can be deployed and executed properly. There are several different configuration file changes that you will need to make, as well as configuring Sharepoint so that the client side JavaScript and image files used by the NetAdvantage elements can be accessed properly. Deploying and configuring NetAdvantage resources Because the sample Web Part created in the prior section utilizes an element from the NetAdvantage toolset (the UltraWebTree), the first step in deploying your Web Part is to configure the client script files and images used by the NetAdvantage elements. To do this, you simply need to copy the required script and image files to the WSS server. Once that is completed you will create a new virtual directory in IIS and configure the Virtual Directory in Sharepoint. Using the NetAdvantage Installation to Configure Scripts and Images The easiest way to ensure that these files are configured properly is to simply run the NetAdvantage installation on the Sharepoint Services server. If you choose to do this, it is recommended that you select the custom installation option and remove the Help and Samples options from the installation. Manual Installation of NetAdvantage Scripts and Images Should you decided to deploy the files to your WSS server manually, you simply need to create a location within IIS that contains the necessary scripts and images that the NetAdvantage controls can access. There are two ways to do this.

9 1. Create a folder called ig_common in your web root (usually c:\inetpub\wwwroot\). 2. Create a Virtual Directory in the root of IIS called ig_common. Creating a Virtual Directory allows you to place the script and images files anywhere on your server. IIS can contain several different WSS related websites, each containing several different web.config files, so you need to make sure you are editing the proper file. The web.config file you want to edit is located under the root of the IIS site that contains your WSS virtual server site. You do not want to edit the web.config files in the Sharepoint Central Administration site.

10 Once you have created the ig_common directory (or Virtual Directory), locate the c:\inetpub\wwwroot\aspnet_client\infragistics directory on your development system. Installed by the NetAdvantage installation program, this folder contains the image and script files needed by the NetAdvantage ASP.NET elements. Exploring the directory, you will find a single Images directory, as well as a separate directory containing the JavaScript files for every version of NetAdvantage you have installed. The script folder names follow the pattern YYYYR, a four digit year combined with a release number (i.e 20053) To deploy the resources, simply copy the Images directory and the appropriate script version directory from your development system to the ig_common directory on your WSS server. For example, if you are currently using NetAdvantage 2005 Volume 2, then you would copy the Images directory and the directory. Configuring an Excluded Directory Finally you need to configure the ig_common directory (or Virtual Directory) as an Excluded Directory in Sharepoint. By default, Sharepoint will try to take over every incoming web request, including requests to the ig_common directory. Configuring the directory as an Excluded directory, prevents Sharepoint from intercepting requests made to it. 1. On the server that is running Sharepoint Services, click Start, click Administrative Tools, then click Sharepoint Central Administration 2. In the Virtual Server Configuration area, click Configure virtual server settings 3. Form the Virtual Server List, click the link of the virtual server that you want to add the excluded paths to 4. Under Virtual Server Management, click Define Managed Paths 5. In the Add a New Path section, type the path to exclude in the Path box 6. Click the Exclude path option 7. Click the OK button at the bottom of the page When you have completes the steps, the newly added excluded path will be displayed in the Excluded Paths list

11 Deploying the Web Part Assemblies Once you have completed deploying the required NetAdvantage assets, you can now deploy your web parts main and referenced assemblies. To do this simply copy the Web Parts main assembly and all referenced NetAdvantage assemblies to the Bin directory of your Sharepoint Services Virtual Server. If no Bin directory exists in your virtual server simply create one. Configuring Web Part Assembly Security By default WSS uses a very low level of trust for.net assemblies. In order to complete the deployment of your sample Web Part, you need to configure WSS so that it will consider the Web Parts assembly as safe, and then grant the assembly a higher level of trust. These configuration changes are made in the web.config file locate in the WSS virtual server root. IIS generally contains several different WSS related websites, each containing several different web.config files, so you need to make sure you are editing the proper file. The web.config file you want to edit is located under the root of the IIS site that contains your WSS virtual server site. You do not want to edit the web.config files in the Sharepoint Central Administration site. Declaring your assembly a SafeControl In order to execute the Web Part assembly, WSS requires that you register it and its namespace as a SafeControl in the web.config file. To do this, simple add a new <SafeControl> block to the web.config. <SafeControl Assembly="WebPartLibrary1, Version= , Culture=neutral, PublicKeyToken=def148956c61a16b" Namespace="WebPartLibrary1" TypeName="*" Safe="True" /> Replace the PublicKeyToken value (def148956c61a16b) in the above sample with the actual value for your Web Part's assembly. To determine the correct PublicKeyToken value for the Assembly attribute of the <SafeControl> tag for your Web Part, use the sn.exe command-line utility: sn.exe -T c:\inetpub\wwwroot\bin\webpartlibrary1.dll

12 Setting the Assembly Trust level Locate or add the <trust> node in the web config file and change the level attribute to Full. WSS uses the.net Frameworks built in Code Access Security (CAS) model to determine the trust level of your web parts assembly, and what access rights it should have. By changing the Trust mode of your WSS to Full, you are explicitly granting any web part you add full CAS trust. <trust level="full" originurl="" />. Should you not want to change the trust level of your entire virtual server to Full, there are other ways of configuring web part security. First, you can create a policy for your web parts assembly specifying the CAS rights required to execute the assembly. Second you can install your web part assembly into the Global Assembly Cache (GAC). Installing an assembly into the GAC automatically grants the assembly full trust. For more information on this topic, please refer to the article Microsoft Windows Sharepoint Services and Code Access Security, on the Microsoft MSDN website. Using the Web Part in Sharepoint Once you have completed configuring Sharepoint and deploying your web part, you simply need to add the Web Part to the Web Part Gallery in your Sharepoint site. To do this, open the Modify Shared Page menu and select Add Web Parts > Import. This will display an Import web form that allows you to upload a web part definition to the Web Parts Gallery. Your web part definition file is the DWP file that was created as part of the Visual Studio Web Part Library project template. To add the definition, click the Browse button and locate and select the WebPart1.dwp file that was created as part of your project template. Once you have selected the file, simply click the Upload button on the web forms to upload the definition into the Web Parts Gallery. The newly uploaded web part will be displayed below the form Import form. Now that you have added the Web Part to the Gallery, you can simply drag the web part into one of the Sharepoint content areas, as shown on the right. Once you drop the web part into the content area, it will begin to render.

13 Conclusion This whitepaper has demonstrated how you can use tools from the NetAdvantage 2005 Volume 2 toolkit within custom Windows Sharepoint Services web parts. Completing these simple steps, including proper server configuration and deployment allow you to create rich web parts using the powerful tools contained in the NetAdvantage toolkit.

Integrate WebScheduler to Microsoft SharePoint 2007

Integrate WebScheduler to Microsoft SharePoint 2007 Integrate WebScheduler to Microsoft SharePoint 2007 This white paper describes the techniques and walkthrough about integrating WebScheduler to Microsoft SharePoint 2007 as webpart. Prerequisites The following

More information

Developing WebParts for MS Sharepoint Services using Vulcan.NET

Developing WebParts for MS Sharepoint Services using Vulcan.NET Developing WebParts for MS Sharepoint Services using Vulcan.NET Copyright 2006 Fischer & Consultants GmbH. Martinstrasse 1 44137 Dortmund Tel (0231) 14 36 34 Fax (0231) 14 36 46 Email info@appfact.de Extract

More information

Adding the Telerik ASP.NET 2.0 RadMenu Control to MOSS 2007 Publishing Sites

Adding the Telerik ASP.NET 2.0 RadMenu Control to MOSS 2007 Publishing Sites Adding the Telerik ASP.NET 2.0 RadMenu Control to MOSS 2007 Publishing Sites Forward With the release of Windows SharePoint Services (WSS) v3 and Microsoft Office SharePoint Server (MOSS) 2007, Microsoft

More information

Microsoft Partner Day. Introduction to SharePoint for.net Developer

Microsoft Partner Day. Introduction to SharePoint for.net Developer Microsoft Partner Day Introduction to SharePoint for.net Developer 1 Agenda SharePoint Product & Technology Windows SharePoint Services for Developers Visual Studio Extensions For Windows SharePoint Services

More information

SharePoint Authenticated Content WebPart. Formation Technology, 2006

SharePoint Authenticated Content WebPart. Formation Technology, 2006 SharePoint Authenticated Content WebPart Formation Technology, 2006 SharePoint Authenticated Content WebPart Copyright (C) 2006 Sam Critchley, Formation Technology Group http://www.formation.com.au SharePoint

More information

Integrating SAP Portal Content into Microsoft SharePoint Portal Server

Integrating SAP Portal Content into Microsoft SharePoint Portal Server Applies to: SAP NetWeaver 04 SPS15, Portal Development Kit 0 for Microsoft.NET Microsoft Visual Studio.NET 2003 2003 Summary Enabling the integration of portal content created with Portal Development Kit

More information

Dashboards SharePoint Installation Guide SAP BusinessObjects 4.1

Dashboards SharePoint Installation Guide SAP BusinessObjects 4.1 Dashboards SharePoint Installation Guide SAP BusinessObjects 4.1 Copyright 2011 SAP AG. All rights reserved.sap, R/3, SAP NetWeaver, Duet, PartnerEdge, ByDesign, SAP BusinessObjects Explorer, StreamWork,

More information

2310C VB - Developing Web Applications Using Microsoft Visual Studio 2008 Course Number: 2310C Course Length: 5 Days

2310C VB - Developing Web Applications Using Microsoft Visual Studio 2008 Course Number: 2310C Course Length: 5 Days 2310C VB - Developing Web Applications Using Microsoft Visual Studio 2008 Course Number: 2310C Course Length: 5 Days Certification Exam This course will help you prepare for the following Microsoft Certified

More information

VB.NET Web : Phone : INTRODUCTION TO NET FRAME WORK

VB.NET Web : Phone : INTRODUCTION TO NET FRAME WORK Web :- Email :- info@aceit.in Phone :- +91 801 803 3055 VB.NET INTRODUCTION TO NET FRAME WORK Basic package for net frame work Structure and basic implementation Advantages Compare with other object oriented

More information

5.1 Configuring Authentication, Authorization, and Impersonation. 5.2 Configuring Projects, Solutions, and Reference Assemblies

5.1 Configuring Authentication, Authorization, and Impersonation. 5.2 Configuring Projects, Solutions, and Reference Assemblies LESSON 5 5.1 Configuring Authentication, Authorization, and Impersonation 5.2 Configuring Projects, Solutions, and Reference Assemblies 5.3 Publish Web Applications 5.4 Understand Application Pools MTA

More information

PRO: Designing and Developing Microsoft SharePoint 2010 Applications

PRO: Designing and Developing Microsoft SharePoint 2010 Applications PRO: Designing and Developing Microsoft SharePoint 2010 Applications Number: 70-576 Passing Score: 700 Time Limit: 120 min File Version: 1.0 http://www.gratisexam.com/ Exam A QUESTION 1 You are helping

More information

Install using the Umbraco Package Manager

Install using the Umbraco Package Manager Installation instructions Using the Umbraco Package Manager This documentation is available and updated online http://www.bendsoft.com/downloads/tools- for- umbraco/sharepoint- doclib- for- umbraco/installation/

More information

Getting Started Guide

Getting Started Guide Getting Started Guide This documentation and any related computer software help programs (hereinafter referred to as the Documentation ) is for the end user s informational purposes only and is subject

More information

10267A CS: Developing Web Applications Using Microsoft Visual Studio 2010

10267A CS: Developing Web Applications Using Microsoft Visual Studio 2010 10267A CS: Developing Web Applications Using Microsoft Visual Studio 2010 Course Overview This instructor-led course provides knowledge and skills on developing Web applications by using Microsoft Visual

More information

Page 1. Peers Technologies Pvt. Ltd. Course Brochure. Share Point 2007

Page 1. Peers Technologies Pvt. Ltd. Course Brochure. Share Point 2007 Page 1 Peers Technologies Pvt. Ltd. Course Brochure Page 2 Overview SharePoint is becoming the web development platform of the future. The ability to quickly plan, design, deploy and utilize effective

More information

Walkthrough Using the New CLR Interop Feature of Microsoft Dynamics AX

Walkthrough Using the New CLR Interop Feature of Microsoft Dynamics AX Walkthrough Using the New CLR Interop Feature of Microsoft Dynamics AX Walkthrough Using the New CLR Interop Feature of Microsoft Dynamics AX Lab Manual Table of Contents Lab 1: CLR Interop... 1 Lab Objective...

More information

Search for Dynamics v Installation Guide

Search for Dynamics v Installation Guide Search for Dynamics v1.4.3.1 Installation Guide SharePoint 2013 and 2016 Contents Chapter 1: Prerequisites... 3 Chapter 2: Install Search for Dynamics... 4 Install SharePoint Components...4 Install Permissive

More information

Hands-On Lab. Lab 11: Enterprise Search. Lab version: Last updated: 2/23/2011

Hands-On Lab. Lab 11: Enterprise Search. Lab version: Last updated: 2/23/2011 Hands-On Lab Lab 11: Enterprise Search Lab version: 1.0.0 Last updated: 2/23/2011 CONTENTS OVERVIEW... 3 EXERCISE 1: CUSTOMIZING SEARCH CENTER... 4 EXERCISE 2: CREATING A CUSTOM RANKING MODEL... 14 EXERCISE

More information

ImageNow Interact for Microsoft SharePoint Installation, Setup, and User Guide

ImageNow Interact for Microsoft SharePoint Installation, Setup, and User Guide ImageNow Interact for Microsoft SharePoint Installation, Setup, and User Guide Version: 6.6.x Written by: Product Documentation, R&D Date: ImageNow and CaptureNow are registered trademarks of Perceptive

More information

2730 : Building Microsoft Content Management Server 2002 Solutions

2730 : Building Microsoft Content Management Server 2002 Solutions 2730 : Building Microsoft Content Management Server 2002 Solutions Introduction This four-day, instructor-led course provides students with the knowledge and skills to plan, implement, develop, and manage

More information

Nintex Forms 2010 Help

Nintex Forms 2010 Help Nintex Forms 2010 Help Last updated: Monday, April 20, 2015 1 Administration and Configuration 1.1 Licensing settings 1.2 Activating Nintex Forms 1.3 Web Application activation settings 1.4 Manage device

More information

Hands-On Lab. Lab 02: Visual Studio 2010 SharePoint Tools. Lab version: Last updated: 2/23/2011

Hands-On Lab. Lab 02: Visual Studio 2010 SharePoint Tools. Lab version: Last updated: 2/23/2011 Hands-On Lab Lab 02: Visual Studio 2010 SharePoint Tools Lab version: 1.0.0 Last updated: 2/23/2011 CONTENTS OVERVIEW... 3 EXERCISE 1: CREATING A SHAREPOINT 2010 PROJECT... 4 EXERCISE 2: ADDING A FEATURE

More information

Cookbook for using SQL Server DTS 2000 with.net

Cookbook for using SQL Server DTS 2000 with.net Cookbook for using SQL Server DTS 2000 with.net Version: 1.0 revision 15 Last updated: Tuesday, July 23, 2002 Author: Gert E.R. Drapers (GertD@SQLDev.Net) All rights reserved. No part of the contents of

More information

Simple Print.

Simple Print. SharePoint Knowledge Base Solution Accelerator for SharePoint 2010 Release 1.5 (SA05) Overview System Requirements Installation Configuration Using KB Accelerator Licensing and Activation System Requirements

More information

Hands-On Lab. Lab 13: Developing Sandboxed Solutions for Web Parts. Lab version: Last updated: 2/23/2011

Hands-On Lab. Lab 13: Developing Sandboxed Solutions for Web Parts. Lab version: Last updated: 2/23/2011 Hands-On Lab Lab 13: Developing Sandboxed Solutions for Web Parts Lab version: 1.0.0 Last updated: 2/23/2011 CONTENTS OVERVIEW... 3 EXERCISE 1: CREATING THE VISUAL STUDIO 2010 PROJECT... 3 EXERCISE 2:

More information

IN ACTION. Wictor Wilén SAMPLE CHAPTER MANNING

IN ACTION. Wictor Wilén SAMPLE CHAPTER MANNING IN ACTION Wictor Wilén SAMPLE CHAPTER MANNING SharePoint 2010 Webparts in Action Wictor Wilén Chapter 3 Copyright 2011 Manning Publications brief contents PART 1 INTRODUCING SHAREPOINT 2010 WEB PARTS...1

More information

Hands-On Lab. Lab: Client Object Model. Lab version: Last updated: 2/23/2011

Hands-On Lab. Lab: Client Object Model. Lab version: Last updated: 2/23/2011 Hands-On Lab Lab: Client Object Model Lab version: 1.0.0 Last updated: 2/23/2011 CONTENTS OVERVIEW... 3 EXERCISE 1: RETRIEVING LISTS... 4 EXERCISE 2: PRINTING A LIST... 8 EXERCISE 3: USING ADO.NET DATA

More information

Setting Up Jive for SharePoint Online and Office 365. Introduction 2

Setting Up Jive for SharePoint Online and Office 365. Introduction 2 Setting Up Jive for SharePoint Online and Office 365 Introduction 2 Introduction 3 Contents 4 Contents Setting Up Jive for SharePoint Online and Office 365...5 Jive for SharePoint Online System Requirements...5

More information

HOMELESS INDIVIDUALS AND FAMILIES INFORMATION SYSTEM HIFIS 4.0 TECHNICAL ARCHITECTURE AND DEPLOYMENT REFERENCE

HOMELESS INDIVIDUALS AND FAMILIES INFORMATION SYSTEM HIFIS 4.0 TECHNICAL ARCHITECTURE AND DEPLOYMENT REFERENCE HOMELESS INDIVIDUALS AND FAMILIES INFORMATION SYSTEM HIFIS 4.0 TECHNICAL ARCHITECTURE AND DEPLOYMENT REFERENCE HIFIS Development Team May 16, 2014 Contents INTRODUCTION... 2 HIFIS 4 SYSTEM DESIGN... 3

More information

PRIMAVERA WebCentral SDK Manual

PRIMAVERA WebCentral SDK Manual PRIMAVERA WebCentral SDK Manual Version 1.0 October 2010 Index Index... 1 Introduction... 4 Overview... 5 PRIMAVERA WebCentral... 5 Contents... 5 Components... 5 Modules... 6 A Technical Overview... 6

More information

ASP.net. Microsoft. Getting Started with. protected void Page_Load(object sender, EventArgs e) { productsdatatable = new DataTable();

ASP.net. Microsoft. Getting Started with. protected void Page_Load(object sender, EventArgs e) { productsdatatable = new DataTable(); Getting Started with protected void Page_Load(object sender, EventArgs e) { productsdatatable = new DataTable(); string connectionstring = System.Configuration.ConfigurationManager.ConnectionStrings ["default"].connectionstring;!

More information

2609 : Introduction to C# Programming with Microsoft.NET

2609 : Introduction to C# Programming with Microsoft.NET 2609 : Introduction to C# Programming with Microsoft.NET Introduction In this five-day instructor-led course, developers learn the fundamental skills that are required to design and develop object-oriented

More information

Hands-On Lab. Lab 05: LINQ to SharePoint. Lab version: Last updated: 2/23/2011

Hands-On Lab. Lab 05: LINQ to SharePoint. Lab version: Last updated: 2/23/2011 Hands-On Lab Lab 05: LINQ to SharePoint Lab version: 1.0.0 Last updated: 2/23/2011 CONTENTS OVERVIEW... 3 EXERCISE 1: CREATING LIST DATA... 3 EXERCISE 2: CREATING ENTITIES USING THE SPMETAL UTILITY...

More information

PointFire Multilingual User Interface for on-premises SharePoint PointFire 2013 v1.0 to 2016 v1.0 Upgrade Guide

PointFire Multilingual User Interface for on-premises SharePoint PointFire 2013 v1.0 to 2016 v1.0 Upgrade Guide PointFire 2016 Multilingual User Interface for on-premises SharePoint 2016 PointFire 2013 v1.0 to 2016 v1.0 Upgrade Guide Version: 1.0 Build Date: October 28, 2016 Prepared by: Address: Tel: Email: Web:

More information

Kentico CMS 6.0 Intranet Administrator's Guide

Kentico CMS 6.0 Intranet Administrator's Guide Kentico CMS 6.0 Intranet Administrator's Guide 2 Kentico CMS 6.0 Intranet Administrator's Guide Table of Contents Introduction 5... 5 About this guide Getting started 7... 7 Installation... 11 Accessing

More information

Colligo Contributor Pro 4.4 SP2. User Guide

Colligo Contributor Pro 4.4 SP2. User Guide 4.4 SP2 User Guide CONTENTS Introduction... 3 Benefits... 3 System Requirements... 3 Software Requirements... 3 Client Software Requirements... 3 Server Software Requirements... 3 Installing Colligo Contributor...

More information

Introduction to Web Development with Microsoft Visual Studio 2010

Introduction to Web Development with Microsoft Visual Studio 2010 10267 - Introduction to Web Development with Microsoft Visual Studio 2010 Duration: 5 days Course Price: $2,975 Software Assurance Eligible Course Description Course Overview This five-day instructor-led

More information

Schedule. 75 minute session. Cell phones and pagers. Please complete the session survey we take your feedback very seriously!

Schedule. 75 minute session. Cell phones and pagers. Please complete the session survey we take your feedback very seriously! Building and Extending Tasks for ArcGIS Server.NET Web Applications Rex Hansen, Sentha Sivabalan ESRI Developer Summit 2008 1 Schedule 75 minute session 60 65 minute lecture 10 15 minutes Q & A following

More information

M Introduction to C# Programming with Microsoft.NET - 5 Day Course

M Introduction to C# Programming with Microsoft.NET - 5 Day Course Module 1: Getting Started This module presents the concepts that are central to the Microsoft.NET Framework and platform, and the Microsoft Visual Studio.NET integrated development environment (IDE); describes

More information

3A01:.Net Framework Security

3A01:.Net Framework Security 3A01:.Net Framework Security Wolfgang Werner HP Decus Bonn 2003 2003 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice Agenda Introduction to

More information

Programming Fundamentals of Web Applications

Programming Fundamentals of Web Applications Programming Fundamentals of Web Applications Course 10958B; 5 days, Instructor-led Course Description This five-day instructor-led course provides the knowledge and skills to develop web applications by

More information

Developing Custom Web Tasks Using the.net Web ADF. Sentha Sivabalan and Rex Hansen

Developing Custom Web Tasks Using the.net Web ADF. Sentha Sivabalan and Rex Hansen Developing Custom Web Tasks Using the NET Web ADF Sentha Sivabalan and Rex Hansen Session Topics Overview of the Web ADF Task Framework Task Runtime Customization Visual Studio Integration Manager Integration

More information

Introduction to Programming Microsoft.NET Applications with Visual Studio 2008 (C#)

Introduction to Programming Microsoft.NET Applications with Visual Studio 2008 (C#) Introduction to Programming Microsoft.NET Applications with Visual Studio 2008 (C#) Course Number: 6367A Course Length: 3 Days Course Overview This three-day course will enable students to start designing

More information

.NET-6Weeks Project Based Training

.NET-6Weeks Project Based Training .NET-6Weeks Project Based Training Core Topics 1. C# 2. MS.Net 3. ASP.NET 4. 1 Project MS.NET MS.NET Framework The.NET Framework - an Overview Architecture of.net Framework Types of Applications which

More information

VisualSP Help System 2013 Installation Procedure. Rehmani Consulting, Inc.

VisualSP Help System 2013 Installation Procedure. Rehmani Consulting, Inc. Rehmani Consulting, Inc. VisualSP Help System 2013 Installation Procedure http://www.visualsp.com vsp-support@visualsp.com 630-786-7026 Rev 6.2 for VSP 5.2.0.0 Contents Contents... 1 Introduction... 2

More information

Coveo Platform 6.5. Microsoft SharePoint Connector Guide

Coveo Platform 6.5. Microsoft SharePoint Connector Guide Coveo Platform 6.5 Microsoft SharePoint Connector Guide Notice The content in this document represents the current view of Coveo as of the date of publication. Because Coveo continually responds to changing

More information

Developing Microsoft Azure Solutions

Developing Microsoft Azure Solutions Course 20532C: Developing Microsoft Azure Solutions Course details Course Outline Module 1: OVERVIEW OF THE MICROSOFT AZURE PLATFORM This module reviews the services available in the Azure platform and

More information

SharePoint 2010 Content Types

SharePoint 2010 Content Types SharePoint 2010 Content Types A content type essentially defines the attributes of a list item, a document, or a folder. SharePoint 2010 has several built in content types and site columns that may meet

More information

Introduction to Web Development with Microsoft Visual Studio 2010

Introduction to Web Development with Microsoft Visual Studio 2010 Introduction to Web Development with Microsoft Visual Studio 2010 Course 10267; 5 Days, Instructor-led Course Description This five-day instructor-led course provides knowledge and skills on developing

More information

ASP.NET Web Forms Programming Using Visual Basic.NET

ASP.NET Web Forms Programming Using Visual Basic.NET ASP.NET Web Forms Programming Using Visual Basic.NET Duration: 35 hours Price: $750 Delivery Option: Attend training via an on-demand, self-paced platform paired with personal instructor facilitation.

More information

Hands-On Lab. Lab Manual Building Solutions with the Microsoft Office Information Bridge Framework

Hands-On Lab. Lab Manual Building Solutions with the Microsoft Office Information Bridge Framework Hands-On Lab Lab Manual Building Solutions with the Microsoft Office Information Bridge Framework Please do not remove this manual from the lab The lab manual will be available from CommNet Information

More information

COURSE OUTLINE: OD10267A Introduction to Web Development with Microsoft Visual Studio 2010

COURSE OUTLINE: OD10267A Introduction to Web Development with Microsoft Visual Studio 2010 Course Name OD10267A Introduction to Web Development with Microsoft Visual Studio 2010 Course Duration 2 Days Course Structure Online Course Overview This course provides knowledge and skills on developing

More information

My Site. Introduction

My Site. Introduction My Site Introduction My Site is a component of the portal that is available to all NB educators. It is a personalized site that provides all users with the following features: A place to save and share

More information

Chapter 9. Web Applications The McGraw-Hill Companies, Inc. All rights reserved. McGraw-Hill

Chapter 9. Web Applications The McGraw-Hill Companies, Inc. All rights reserved. McGraw-Hill Chapter 9 Web Applications McGraw-Hill 2010 The McGraw-Hill Companies, Inc. All rights reserved. Chapter Objectives - 1 Explain the functions of the server and the client in Web programming Create a Web

More information

INTRODUCTION TO.NET. Domain of.net D.N.A. Architecture One Tier Two Tier Three Tier N-Tier THE COMMON LANGUAGE RUNTIME (C.L.R.)

INTRODUCTION TO.NET. Domain of.net D.N.A. Architecture One Tier Two Tier Three Tier N-Tier THE COMMON LANGUAGE RUNTIME (C.L.R.) INTRODUCTION TO.NET Domain of.net D.N.A. Architecture One Tier Two Tier Three Tier N-Tier THE COMMON LANGUAGE RUNTIME (C.L.R.) CLR Architecture and Services The.Net Intermediate Language (IL) Just- In-

More information

A Developer s Guide to Microsoft SharePoint Mashups.

A Developer s Guide to Microsoft SharePoint Mashups. A Developer s Guide to Microsoft SharePoint Mashups www.jackbe.com 2009 A Developer s Guide to Mashups for Microsoft SharePoint Microsoft's platform for collaboration and document management, SharePoint,

More information

SharePoint 2010 Developmnet

SharePoint 2010 Developmnet SharePoint 2010 Developmnet Delavnica Uroš Žunič, Kompas Xnet 165 VSEBINA DOKUMENTA LAB 01 GETTING STARTED WITH SHAREPOINT 2010... 3 LAB 02 VISUAL STUDIO SHAREPOINT TOOLS... 31 LAB 04 SHAREPOINT 2010 USER

More information

Microsoft Windows SharePoint Services

Microsoft Windows SharePoint Services Microsoft Windows SharePoint Services SITE ADMIN USER TRAINING 1 Introduction What is Microsoft Windows SharePoint Services? Windows SharePoint Services (referred to generically as SharePoint) is a tool

More information

Microsoft. Inside Microsoft. SharePoint Ted Pattison. Andrew Connell. Scot Hillier. David Mann

Microsoft. Inside Microsoft. SharePoint Ted Pattison. Andrew Connell. Scot Hillier. David Mann Microsoft Inside Microsoft SharePoint 2010 Ted Pattison Andrew Connell Scot Hillier David Mann ble of Contents Foreword Acknowledgments Introduction xv xvii xix 1 SharePoint 2010 Developer Roadmap 1 SharePoint

More information

Professional SharePoint 2007 Development

Professional SharePoint 2007 Development Professional SharePoint 2007 Development Chapter 8: Building Personalized Solutions ISBN-10: 0-470-11756-7 ISBN-13: 978-0-470-11756-9 Copyright of Wiley Publishing, Inc. Posted with Permission Building

More information

.NET, C#, and ASP.NET p. 1 What Is.NET? p. 2 The Common Language Runtime p. 2 Introducing C# p. 3 Introducing ASP.NET p. 4 Getting Started p.

.NET, C#, and ASP.NET p. 1 What Is.NET? p. 2 The Common Language Runtime p. 2 Introducing C# p. 3 Introducing ASP.NET p. 4 Getting Started p. Introduction p. xix.net, C#, and ASP.NET p. 1 What Is.NET? p. 2 The Common Language Runtime p. 2 Introducing C# p. 3 Introducing ASP.NET p. 4 Getting Started p. 5 Installing Internet Information Server

More information

"Charting the Course... MOC A Introduction to Web Development with Microsoft Visual Studio Course Summary

Charting the Course... MOC A Introduction to Web Development with Microsoft Visual Studio Course Summary Description Course Summary This course provides knowledge and skills on developing Web applications by using Microsoft Visual. Objectives At the end of this course, students will be Explore ASP.NET Web

More information

Course Outline: Course 10267A: Introduction to Web Development with Microsoft Visual Studio 2010 Learning Method: Instructor-led Classroom Learning

Course Outline: Course 10267A: Introduction to Web Development with Microsoft Visual Studio 2010 Learning Method: Instructor-led Classroom Learning Course Outline: Course 10267A: Introduction to Web Development with Microsoft Visual Studio 2010 Learning Method: Instructor-led Classroom Learning Duration: 5.00 Day(s)/ 40 hrs Overview: This five-day

More information

Syncfusion Report Platform. Version - v Release Date - March 22, 2017

Syncfusion Report Platform. Version - v Release Date - March 22, 2017 Syncfusion Report Platform Version - v2.1.0.8 Release Date - March 22, 2017 Overview... 5 Key features... 5 Create a support incident... 5 System Requirements... 5 Report Server... 5 Hardware Requirements...

More information

It is necessary to follow all of the sections below in the presented order. Skipping steps may prevent subsequent sections from working correctly.

It is necessary to follow all of the sections below in the presented order. Skipping steps may prevent subsequent sections from working correctly. The following example demonstrates how to create a basic custom module, including all steps required to create Installation packages for the module. You can use the packages to distribute the module to

More information

Copyright...3. Plug-In Development Guide Creating Widgets for Dashboards... 5

Copyright...3. Plug-In Development Guide Creating Widgets for Dashboards... 5 Contents 2 Contents Copyright...3 Plug-In Development Guide... 4 Creating Widgets for Dashboards... 5 Widget Creation...5 Use of the Widgets... 6 To Create a Simple Widget... 8 To Create an Inquiry-Based

More information

Kentico CMS MailChimp Webpart

Kentico CMS MailChimp Webpart Kentico CMS MailChimp Webpart Introduction: This webpart provides user a medium to communicate with others by sending email. An User can send email to everyone on a particular contact list every time user

More information

Module Overview. Monday, January 30, :55 AM

Module Overview. Monday, January 30, :55 AM Module 11 - Extending SQL Server Integration Services Page 1 Module Overview 12:55 AM Instructor Notes (PPT Text) Emphasize that this module is not designed to teach students how to be professional SSIS

More information

Activating AspxCodeGen 4.0

Activating AspxCodeGen 4.0 Activating AspxCodeGen 4.0 The first time you open AspxCodeGen 4 Professional Plus edition you will be presented with an activation form as shown in Figure 1. You will not be shown the activation form

More information

Adlib PDF SharePoint Workflow Connector Guide PRODUCT VERSION: 2.1

Adlib PDF SharePoint Workflow Connector Guide PRODUCT VERSION: 2.1 Adlib PDF SharePoint Workflow Connector Guide PRODUCT VERSION: 2.1 REVISION DATE: January 2013 Copyright 2013 Adlib This manual, and the Adlib products to which it refers, is furnished under license and

More information

User s Manual for uknowva

User s Manual for uknowva User s Manual for uknowva Prepared by: Convergence IT Services Pvt. Ltd. Description uknowva is extensible Enterprise Collaboration Software that offers a private and secure platform for members of an

More information

Pro ASP.NET SharePoint Solutions. Techniques for Building SharePoint Functionality into ASP.NET Applications. Dave Milner.

Pro ASP.NET SharePoint Solutions. Techniques for Building SharePoint Functionality into ASP.NET Applications. Dave Milner. Pro ASP.NET SharePoint 2010 Solutions Techniques for Building SharePoint Functionality into ASP.NET Applications Dave Milner Apress* Contents at a Glance About the Author About the Technical Reviewer Acknowledgments

More information

Microsoft SharePoint Server 2013 for the Site Owner/Power User

Microsoft SharePoint Server 2013 for the Site Owner/Power User Course 55035A: Microsoft SharePoint Server 2013 for the Site Owner/Power User Course Details Course Outline Module 1: The Role of the Site Owner This module provides an introduction to the topics covered

More information

SharePoint 2013 a Operations Manager 2012 R2 - Service Visualization

SharePoint 2013 a Operations Manager 2012 R2 - Service Visualization SharePoint 2013 a Operations Manager 2012 R2 - Service Visualization Pavel Kyzivát, Premier Field Engineer Robert Novák, Premier Field Engineer Microsoft Agenda Introduction Architecture of the solution

More information

Getting Started with EPiServer 4

Getting Started with EPiServer 4 Getting Started with EPiServer 4 Abstract This white paper includes information on how to get started developing EPiServer 4. The document includes, among other things, high-level installation instructions,

More information

Citrix Web Interface for Microsoft SharePoint Administrator s Guide. Citrix Access Suite 4.2

Citrix Web Interface for Microsoft SharePoint Administrator s Guide. Citrix Access Suite 4.2 Citrix Web Interface for Microsoft SharePoint Administrator s Guide Citrix Web Interface for Microsoft SharePoint Citrix Access Suite 4.2 Use of the product documented in this guide is subject to your

More information

55035: Microsoft SharePoint Server 2013 for the Site Owner/Power User

55035: Microsoft SharePoint Server 2013 for the Site Owner/Power User 55035: Microsoft SharePoint Server 2013 for the Site Owner/Power User Description This training class is designed for SharePoint Site Owners, Site Collection Administrators and SharePoint Server Administrators

More information

JSF Tools Reference Guide. Version: M5

JSF Tools Reference Guide. Version: M5 JSF Tools Reference Guide Version: 3.3.0.M5 1. Introduction... 1 1.1. Key Features of JSF Tools... 1 2. 3. 4. 5. 1.2. Other relevant resources on the topic... 2 JavaServer Faces Support... 3 2.1. Facelets

More information

CST272 Getting Started Page 1

CST272 Getting Started Page 1 CST272 Getting Started Page 1 1 2 3 4 5 6 8 Introduction to ASP.NET, Visual Studio and C# CST272 ASP.NET Static and Dynamic Web Applications Static Web pages Created with HTML controls renders exactly

More information

How to Get Your Site Online

How to Get Your Site Online 2017-02-14 Orckestra, Europe Nygårdsvej 16 DK-2100 Copenhagen Phone +45 3915 7600 www.orckestra.com Contents 1 GETTING YOUR WEBSITE ONLINE... 3 1.1 Publishing Using WebMatrix 3 1.2 Publishing to Your Web

More information

DOT NET Syllabus (6 Months)

DOT NET Syllabus (6 Months) DOT NET Syllabus (6 Months) THE COMMON LANGUAGE RUNTIME (C.L.R.) CLR Architecture and Services The.Net Intermediate Language (IL) Just- In- Time Compilation and CLS Disassembling.Net Application to IL

More information

Developing Microsoft SharePoint Server 2013 Advanced Solutions

Developing Microsoft SharePoint Server 2013 Advanced Solutions 20489 - Developing Microsoft SharePoint Server 2013 Advanced Solutions Duration: 5 Days Course Price: $2,975 Software Assurance Eligible Course Description Course Overview This training course provides

More information

Beginning ASP.NET. 4.5 in C# Matthew MacDonald

Beginning ASP.NET. 4.5 in C# Matthew MacDonald Beginning ASP.NET 4.5 in C# Matthew MacDonald Contents About the Author About the Technical Reviewers Acknowledgments Introduction xxvii xxix xxxi xxxiii UPart 1: Introducing.NET. 1 & Chapter 1: The Big

More information

Explorer View document libraries, 165 form library, 183

Explorer View document libraries, 165 form library, 183 Index A Actions section Add Listing link, 18 Add News link, 29 Add Person link, 20 Advanced Search Link, 41 Change Location link, 19 Change Settings link, 13 Create Subarea link, 13 Edit Page link, 21

More information

Microsoft SharePoint Server 2013 for the Site Owner/Power User Course 55035: 2 days; Instructor-Led

Microsoft SharePoint Server 2013 for the Site Owner/Power User Course 55035: 2 days; Instructor-Led Course 55035: Microsoft SharePoint Server 2013 for the Site Owner/Power User Page 1 of 8 Microsoft SharePoint Server 2013 for the Site Owner/Power User Course 55035: 2 days; Instructor-Led Overview This

More information

with Access Manager 51.1 What is Supported in This Release?

with Access Manager 51.1 What is Supported in This Release? 51 51 Integrating Microsoft SharePoint Server with Access Manager This chapter explains how to integrate Access Manager with a 10g WebGate and Microsoft SharePoint Server. It covers the following topics:

More information

Save As PDF. User Guide

Save As PDF. User Guide Save As PDF User Guide Expand the Bookmark menu in left side to see the table of contents. Copyright by bizmodules.net 2009 Page 1 of 5 Overview What is Save As PDF Save As PDF (SAP) is a DotNetNuke (DNN)

More information

20489: Developing Microsoft SharePoint Server 2013 Advanced Solutions

20489: Developing Microsoft SharePoint Server 2013 Advanced Solutions 20489: Developing Microsoft SharePoint Server 2013 Advanced Solutions Length: 5 days Audience: Developers Level: 300 OVERVIEW This course provides SharePoint developers the information needed to implement

More information

Key Concepts in EPiServer 7

Key Concepts in EPiServer 7 Key Concepts in EPiServer 7 (for developers) Jeff Wallace Solution Architect #epi2012 episerver.com/epi2012 Definitions A Property is a content item an editor can assign a value to A Block Type is set

More information

Content Publisher User Guide

Content Publisher User Guide Content Publisher User Guide Overview 1 Overview of the Content Management System 1 Table of Contents What's New in the Content Management System? 2 Anatomy of a Portal Page 3 Toggling Edit Controls 5

More information

Adding Pages to an Office SharePoint Server 2007 Search Center Site Ben Curry and Bill English March 23, 2009

Adding Pages to an Office SharePoint Server 2007 Search Center Site Ben Curry and Bill English March 23, 2009 Adding Pages to an Office SharePoint Server 2007 Search Center Site Ben Curry and Bill English March 23, 2009 Copyright 2009, English, Bleeker & Associates, Inc., DBA Mindsharp (www.mindsharp.com). This

More information

Getting Started with EPiServer 4

Getting Started with EPiServer 4 Getting Started with EPiServer 4 Abstract This white paper includes information on how to get started developing EPiServer 4. The document includes, among other things, high-level installation instructions,

More information

White Paper. Backup and Recovery Challenges with SharePoint. By Martin Tuip. October Mimosa Systems, Inc.

White Paper. Backup and Recovery Challenges with SharePoint. By Martin Tuip. October Mimosa Systems, Inc. White Paper By Martin Tuip Mimosa Systems, Inc. October 2009 Backup and Recovery Challenges with SharePoint CONTENTS Introduction...3 SharePoint Backup and Recovery Challenges...3 Native Backup and Recovery

More information

Peers Technologies Pvt. Ltd. SHAREPOINT 2010 SHAREPOINT 2010 USAGE SHAREPOINT SERVER 2010 ADMINISTRATION SHAREPOINT SERVER 2010 DESIGN

Peers Technologies Pvt. Ltd. SHAREPOINT 2010 SHAREPOINT 2010 USAGE SHAREPOINT SERVER 2010 ADMINISTRATION SHAREPOINT SERVER 2010 DESIGN Page 1 Peers Technologies Pvt. Ltd. Course Brochure 2010 2010 USAGE SERVER 2010 ADMINISTRATION SERVER 2010 DESIGN SERVER 2010 DEVELOPMENT Page 2 SharePoint 2010 Usage Course Outline This course takes users

More information

EMC Documentum Connector for Microsoft SharePoint Farm Solution

EMC Documentum Connector for Microsoft SharePoint Farm Solution EMC Documentum Connector for Microsoft SharePoint Farm Solution Version 7.2 Installation Guide EMC Corporation Corporate Headquarters Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com Legal Notice Copyright

More information

Wiki Installation Guide Guide to installing the BlueBridge Wiki Extensions for Microsoft SharePoint 2013

Wiki Installation Guide Guide to installing the BlueBridge Wiki Extensions for Microsoft SharePoint 2013 Guide to installing the BlueBridge Wiki Extensions for Microsoft SharePoint 2013 Table Of Contents 1. BlueBridge Wiki Extensions Installation Guide... 3 2. Installation... 4 2.1 Preparing the Installation...

More information

QUICK START Datapolis Process System v

QUICK START Datapolis Process System v Datapolis.com, ul Wiktorska 63, 02-587 Warsaw, Poland tel. (+48 22) 398-37-53; fax. (+ 48 22) 398-37-93, office@datapolis.com QUICK START Datapolis Process System v 4.2.0.4294 Last modification on: 10

More information

Responsive SharePoint WSP Edition

Responsive SharePoint WSP Edition Responsive SharePoint WSP Edition Version 1.0 Bootstrap 3 and Foundation 4 for SP 2013 The Bootstrap 3 and Foundation 4 frameworks integrated with Microsoft SharePoint 2013, including several master pages

More information

SharePoint 2010 Central Administration/Configuration Training

SharePoint 2010 Central Administration/Configuration Training SharePoint 2010 Central Administration/Configuration Training Overview: - This course is designed for the IT professional who has been tasked with setting up, managing and maintaining Microsoft's SharePoint

More information

Index. Tony Smith 2016 T. Smith, SharePoint 2016 User's Guide, DOI /

Index. Tony Smith 2016 T. Smith, SharePoint 2016 User's Guide, DOI / Index A Alerts creation frequency, 472 list and library, 474 475 list item and document, 473 474 notifications, 478 page alerts, 475 476 search alerts, 477 items, 472 management adding alerts, 480 481

More information