CreateDocumentSet.aspx
<%@ Assembly Name="$SharePoint.Project.AssemblyFullName$" %>
<%@ Import Namespace="Microsoft.SharePoint.ApplicationPages" %>
<%@ Register Tagprefix="SharePoint" Namespace="Microsoft.SharePoint.WebControls" Assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
<%@ Register Tagprefix="Utilities" Namespace="Microsoft.SharePoint.Utilities" Assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
<%@ Register Tagprefix="asp" Namespace="System.Web.UI" Assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" %>
<%@ Import Namespace="Microsoft.SharePoint" %>
<%@ Assembly Name="Microsoft.Web.CommandUI, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="CreateDocumentSet.aspx.cs" Inherits="ECM_CreateDocumentSet.Layouts.ECM_CreateDocumentSet.CreateDocumentSet" DynamicMasterPageFile="~masterurl/default.master" %>
<%@ Import Namespace="Microsoft.SharePoint.ApplicationPages" %>
<%@ Register Tagprefix="SharePoint" Namespace="Microsoft.SharePoint.WebControls" Assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
<%@ Register Tagprefix="Utilities" Namespace="Microsoft.SharePoint.Utilities" Assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
<%@ Register Tagprefix="asp" Namespace="System.Web.UI" Assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" %>
<%@ Import Namespace="Microsoft.SharePoint" %>
<%@ Assembly Name="Microsoft.Web.CommandUI, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="CreateDocumentSet.aspx.cs" Inherits="ECM_CreateDocumentSet.Layouts.ECM_CreateDocumentSet.CreateDocumentSet" DynamicMasterPageFile="~masterurl/default.master" %>
<asp:Content ID="PageHead" ContentPlaceHolderID="PlaceHolderAdditionalPageHead" runat="server">
</asp:Content>
<asp:Content ID="Main" ContentPlaceHolderID="PlaceHolderMain" runat="server">
<h1>Document Set Creation Demo</h1>
<p>
This page creates a new document set in the Shared Documents folder. Document
sets enable you to manage multiple documents as one. For example, you can submit
an entire document set as a record in a single operation. You can also apply
metadata and permissions to every document in the set. Before you
can create and use document sets, you must enable the Document Sets feature at
the site collection level. Then add the Document Set content type to the document
library where you want to use them.
</p>
<p>
Name: <asp:TextBox ID="nameTextbox" runat="server"></asp:TextBox>
</p>
<p>
Description: <asp:TextBox ID="descriptionTextbox" runat="server"></asp:TextBox>
</p>
<asp:Button ID="createDocSetButton" OnClick="createDocSetButton_Click" runat="server" Text="Create Document Set" />
<asp:Label ID="resultLabel" runat="server" Text=""></asp:Label>
</asp:Content>
<h1>Document Set Creation Demo</h1>
<p>
This page creates a new document set in the Shared Documents folder. Document
sets enable you to manage multiple documents as one. For example, you can submit
an entire document set as a record in a single operation. You can also apply
metadata and permissions to every document in the set. Before you
can create and use document sets, you must enable the Document Sets feature at
the site collection level. Then add the Document Set content type to the document
library where you want to use them.
</p>
<p>
Name: <asp:TextBox ID="nameTextbox" runat="server"></asp:TextBox>
</p>
<p>
Description: <asp:TextBox ID="descriptionTextbox" runat="server"></asp:TextBox>
</p>
<asp:Button ID="createDocSetButton" OnClick="createDocSetButton_Click" runat="server" Text="Create Document Set" />
<asp:Label ID="resultLabel" runat="server" Text=""></asp:Label>
</asp:Content>
<asp:Content ID="PageTitle" ContentPlaceHolderID="PlaceHolderPageTitle" runat="server">
ECM Document Set Creation
</asp:Content>
<asp:Content ID="PageTitleInTitleArea" ContentPlaceHolderID="PlaceHolderPageTitleInTitleArea" runat="server" >
ECM Document Set Creation
</asp:Content>
ECM Document Set Creation
</asp:Content>
---------------------------------------------------------------------------------------------------------------
CreateDocumentSet.aspx.cs
CreateDocumentSet.aspx.cs
using System;
using System.Collections;
using Microsoft.Office.DocumentManagement.DocumentSets;
using Microsoft.SharePoint;
using Microsoft.SharePoint.WebControls;
using System.Collections;
using Microsoft.Office.DocumentManagement.DocumentSets;
using Microsoft.SharePoint;
using Microsoft.SharePoint.WebControls;
namespace ECM_CreateDocumentSet.Layouts.ECM_CreateDocumentSet
{
/// <summary>
/// This application page creates a document set based on the default document set
/// content type.
/// </summary>
/// <remarks>
/// You must have enabled the site collection level Document Sets feature, and added
/// the Document Set content type to the document library, before you can create
/// document sets.
/// </remarks>
public partial class CreateDocumentSet : LayoutsPageBase
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void createDocSetButton_Click(object sender, EventArgs e)
{
//Get the Shared Documents document library
SPWeb currentWeb = SPContext.Current.Web;
SPDocumentLibrary sharedDocsLib = (SPDocumentLibrary)currentWeb.Lists["Shared Documents"];
//You can use a hashtable to populate properties of the document set
Hashtable docsetProperties = new Hashtable();
docsetProperties.Add("Name", nameTextbox.Text);
docsetProperties.Add("DocumentSetDescription", descriptionTextbox.Text);
//Create the document set
try
{
DocumentSet newDocSet = DocumentSet.Create(sharedDocsLib.RootFolder,
nameTextbox.Text, sharedDocsLib.ContentTypes["Document Set"].Id,
docsetProperties, true);
resultLabel.Text = "Document set created";
}
catch (Exception ex)
{
resultLabel.Text = "An error occurred: " + ex.Message;
}
}
}
}
{
/// <summary>
/// This application page creates a document set based on the default document set
/// content type.
/// </summary>
/// <remarks>
/// You must have enabled the site collection level Document Sets feature, and added
/// the Document Set content type to the document library, before you can create
/// document sets.
/// </remarks>
public partial class CreateDocumentSet : LayoutsPageBase
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void createDocSetButton_Click(object sender, EventArgs e)
{
//Get the Shared Documents document library
SPWeb currentWeb = SPContext.Current.Web;
SPDocumentLibrary sharedDocsLib = (SPDocumentLibrary)currentWeb.Lists["Shared Documents"];
//You can use a hashtable to populate properties of the document set
Hashtable docsetProperties = new Hashtable();
docsetProperties.Add("Name", nameTextbox.Text);
docsetProperties.Add("DocumentSetDescription", descriptionTextbox.Text);
//Create the document set
try
{
DocumentSet newDocSet = DocumentSet.Create(sharedDocsLib.RootFolder,
nameTextbox.Text, sharedDocsLib.ContentTypes["Document Set"].Id,
docsetProperties, true);
resultLabel.Text = "Document set created";
}
catch (Exception ex)
{
resultLabel.Text = "An error occurred: " + ex.Message;
}
}
}
}
-------------------------------------------------------------------------------------------------------------------
https://bayanlarsitesi.com/
ReplyDeleteManisa
Denizli
Malatya
Çankırı
H05Z
80B8CC19BE
ReplyDeleteTelegram Mining Botları
Yeni Telegram Airdrop Botları
Telegram Para Kazanma Grupları
Farm Botları
Telegram Coin Kazanma Botları
4C9F944470
ReplyDeletetiktok takipçi ucuz
beğeni satın al
ucuz takipçi
mobil ödeme takipçi
tiktok takipçi
F1D88E614C
ReplyDeletetiktok türk takipçi
tiktok beğeni satın al
ig takipçi
gerçek takipçi
organik takipçi
5AFC599279
ReplyDeleteinstagram bayan takipçi al
twitter beğeni satın al
fake takipçi
kaliteli takipçi
twitter takipçi
7C08250C5D
ReplyDeletetürkiye'de en çok oynanan mmorpg oyunlar
sms onay
vodafone mobil bozum
twitter takipçi satın alma
-
10302A36F8
ReplyDeletemmorpg oyunlar
anında sms onay
türk telekom mobil bozum
takipçi satın alma
-
5E432F56C6
ReplyDeletemmorpg oyunları
sms onay
turkcell mobil bozum
takipçi satın alma
-