How to create document set in SharePoint 2010

Document Set is used to manage set of documents as a single object
It is a new feature introduced in Share Point 2010.

Advantages of using Document Set in Share Point 2010.

Work Flow can be associated to a whole document set.
We can upload project related documents in Document set.
We can maintain the version of all related documents using Document set.
We can manage permissions easily.
We can able to set customizable welcome page for Document Set.
We can download all the zip files easily by using Document Set.
There is no limit that no of documents exit in Document set.

Folders also used to manage set of documents as a single object.
But for folders we can't start work flow.
Customizable welcome page for all document sets.

Now I will Explain How to Create Document Set.


Navigate to your share point Site Actions->Site Settings.

Navigate to Site Collection Administration ->Site collection features


By default I will not active, click on that feature to Activate




 Now I am creating a document library I give name as Document Set.
                             

Click on that Created Document Library ->Navigate to Library Settings.
                              
Navigate to General settings->Click on Advanced Settings
                         

Allow Management of content types to Yes.
              

Click OK.

In Library settings page we can able to see Content Types.
Click on Add from existing site content types.

  

In Available site Content Types->Select Document Set->Add  
                   
Click OK.
Now we want to give name for Document set.
Navigate to Library settings->Content Types->Click on Document Set
                        

Click on Name and Description tab->Enter Name ->Click OK




 Now click on Created document library Name → Document tab



Go to New Document->
Now we are able to see the created document set with name Share Point Project
                               
Click on that Share point Project ,I am give name as Project Documents and Click Ok.

Now are able to seen the created document set



Now are able to seen the created document set

Click on that Project Documents.
Click on documents tab->Click on Upload Document.

Now we are able to see my uploaded documents.



The form cannot be rendered. This may be due to a misconfiguration of the Microsoft SharePoint Server State Service. For more information, contact your server administrator.

The form cannot be rendered. This may be due to a misconfiguration of the Microsoft SharePoint Server State Service. For more information, contact your server administrator.

                                                                        
Easy solution for this error is we have to enable the State Service for the current web application.

For this error there are three possibilities to check .

1)In Central Administration-> Application management ->In Service Application->Manage service application

Check weather State Service is started or not.                                                                                            



If it is already started then go for another solution.

2)Go to Central Administration-> Configuration Wizards → Farm Configuration →Select Start the Wizard.

                   

Click on Start the Wizard
Check weather State Service is checked or not. If it is checked click next

Skip the Step->Finally click Finish.

3)Central Administration-> Application management->Configure service application associations

Click on the web application that your a facing this Issue,here my state service is disabled.
Enable and check it once..


Finally click OK...and reload the page it will work 100% -:)

Realtime SharePoint Interview Questions

Realtime SharePoint Interview Questions
what is Content type hub?
connector in search?
How to reset index in search?
How to hide part of search results to particular users?
what is Audience Targeting?
What is ECMA script?
Need write code for how to open list (don't forgot to start with try and catch)?
Write caml query ?
SharePoint timer jobs?
what is content type and site column?
what is bcs?
what is site definition and site template?
feature stapling?
what is server object modal  hierarchy ?
different locks in timer jobs?
how to break the writing logs in 14 hive?
how to differentiate asp.net request and SharePoint request?
what is security trimmed control in master page?
what is custom feature?
difference b/w master page and page layouts?
method activities and  event activities in custom workflow?
difference b/w designer work flow and custom workflow?
what is sand box solution and what we can deploy and cant deploy and limitation?
workflow vs event listener?
What is Content retain and Expiration  ?
What is document set?
What is search application service ?
User profile configuration?
What is ZONES in share point?
Whats is METADATA?
What is managed path?

How to enable anonymous access in SharePoint 2013

In  web application level we can set anonymous access in SharePoint.

Web Application Level

          When we create Web Application in SharePoint you can set the anonymous access at the web application level. It will allow the entire anonymous user to access the site.


-->      Go to SharePoint Central Administration site  select “Application Management” -> “Manage web application"

-->Create "New" web application                                                                                                            


-->Choose “Yes” for “Allow Anonymous”                                                                                                                                    

 Already existing site we have to set anonymous, we have to do two steps

1)Authentication Provider

2)Anonymous Policy

Authentication Provider


                    Go to SharePoint Central Administration site  select “Application Management” -> “Web Application Management”


--> In Web Application Management screen select the particular web application in ribbon click on Authentication providers.






--> In authentication Provider select the zone in which you need to change the authentication.


-->You can edit the authentication and set the anonymous access                                                                      

Anonymous Policy

--> In Web Application Management screen select the web application in ribbon click on Anonymous Policy.
-->Set the Anonymous policy for each zone

SharePoint Site Collection Level

       As a first step you need to enable anonymous access at web application level and go to the site collection in which you want set up the anonymous access.

Go to Site Settings, click on “Site Permissions”

 Click on “Anonymous Access”.

Give Anonymous permission to the entire web site, unchecked the “Require Use Remote Interfaces Permission" and click “ok” to save the changes.

SharePoint Library Level

    Go to any library and click on “Library settings”
I am going to pages library

Go to the "Permissions for this document library"

Click on “stop inheriting”

Click on “Anonymous Access”

Set the permission for the anonymous user                                                                                            

By default an anonymous user cannot add and edit items in a document library, which is disable, even with anonymous access enabled. So for a page library all options will be grayed except “View documents”.

Application Page Level


You need to deactivate the Limited-access user permission lockdown mode feature to allow anonymous users to access application level

Finally ,my anonymous site looks like this









Limited-access user permission lock down mode feature in SharePoint 2013

Limited-access user permission lock down mode feature in SharePoint 2013

Limited-access user permission lock down mode feature 


      This feature Limits the access permission for anonymous users on application pages.

 Example:

      http:/<SharePoint Website>/_layouts/viewlsts.aspx
This page will shows all content of the site, and lock down mode can be turn on or off.
Lockdown mode is available as a site Collection Feature! And Site collection administrator can control it using the UI
Site settings > Under Site Collection Administration section > Site Collection Features > Active/Deactive

Note:

Limited-access user permission lockdown mode feature depends on (SharePoint Server Publishing Infrastructure) Feature and it’s important for SharePoint internet websites.

Advantages of Limited-access user permission lockdown mode feature:

Site collection Admin can control without need to use Power shell or get Farm Admin permission.

Secure publishing sites application pages from anonymously access.

Filter data in datagridview in c#

In this article I will explain how to create filter by entering id or name in text box.

My out will be looks like this Now i am entering Empid and Empname





My solution looks like this


Write the code code in Form1.cs
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Data.SqlClient;


namespace IdSearch
{
    public partial class Form1 : Form
    {
        BindingSource bs = new BindingSource();
        public Form1()
        {
            InitializeComponent();
        }

        public void displayDataGridView()
        {

            using (SqlConnection con = new SqlConnection("Data Source = CHINNU;Initial Catalog = dotnetdb;Uid = sa;Password = password123;"))
            {
                SqlCommand cmd;
                cmd = new SqlCommand("select * from Employee", con);
                cmd.CommandType = CommandType.Text;
                SqlDataAdapter da = new SqlDataAdapter(cmd);
                DataSet ds = new DataSet();
                da.Fill(ds);
                dataGridView1.DataSource = ds.Tables[0];

                dataGridView1.AutoGenerateColumns = false;
                dataGridView1.AllowUserToAddRows = false;
            }

        }

        private void Form1_Load(object sender, EventArgs e)
        {
            displayDataGridView();
        }

        private void txtfind_TextChanged(object sender, EventArgs e)
        {
            try
            {
            
                bs.DataSource = dataGridView1.DataSource;
          
               bs.Filter = string.Format("EmpId LIKE '%{0}%' OR [EmpName] LIKE '%{0}%'", txtfind.Text);
                dataGridView1.DataSource = bs;
            }
            catch (Exception ex)
            {
                
            }
        }

       
    }
}

To interact with SharePoint projects in Visual Studio, your system user account must have administrator privileges

To interact with SharePoint projects in Visual Studio, your system user account must have administrator privileges.


I am deploying my solution at that time it display an window I just closed it.



After closing It show an error message like this.


To interact with Share Point projects in Visual Studio, your system user account must have administrator privileges


In Windows Start, find the Micro Soft Visual Studio 2010,Right Click Select Run as administrator.


                          

Now we are able to deploy with out this Error.

How to change indicators on kpi dashboard designer

Select Indicator and click on “Set Scoring Pattern and Indicator” as shown fig below
It shows “Edit Banding Settings”  window  , click on next

\In available Indicators we can change the indicator, I am selecting “Up Trend B – Medium “click on next and finish

Now it shows indicator like this, depends on scoring Pattern we can change Score “Best, Threshold 2 , Threshold 1 and Worst” as shown in fig 


Labels

.Net Interview Questions add custom button in sharepoint using javascript Add custom column property into a PageLayout in SharePoint Add Page Title on their browser's title bar in SharePoint Customly add zip files in blogger Add-SPOSiteCollectionAppCatalog : Must have Manage Web Site permissions or be a tenant admin in order to add or remove sites from the site collection app catalog allow list Advance SmartObject An error occurred while accessing the resources required to serve this request. The server may not be configured for access to the requested URL. Angular 2 Angular JS Angularjs Angularjs 1 anonymous users accessing lists and libraries App Permissions for SharePoint 2013 asp.net membership unique email Asp.net TreeView Control asp.net. Attendees in SharePoint Auto refresh list using Content Editor WebPart in SharePoint 2013. Auto Refresh SharePoint list using JavaScript Block and unblock of attachment types in SharePoint Blogger C# Callouts in SharePoint 2013 Cascading Dropdown list in SharePoint change onenote to another location. change SuiteBarLeft in SharePoint 2013 check if userid exists in database c# click node text to expand/collapse in Treeview client object model Close webpart CQWP crate chart using BI site in PPS Create a modern team site collection in SharePoint online Create BI chart in PPS SharePoint 2013 create filter in dashboard designer. create kpi's in dashboard designer create kpi's in SharePoint 2013 dashboard designer Create List Create List In SharePoint Create List using Power Shell Script Create Lookup Field in List using Power Shell Script Create lookup field in List create SharePoint List custom view. create SharePoint List views in List Schema create site collection in site collection in SharePoint using powershell created Date Time calculated field in SharePoint Cross site Collection in SharePoint 2013 Crud Operation in Asp.net Using Stored Procedure Custom MasterPage Approval in SharePoint custom view for survey list Customly add SharePoint List view in Page. delete items in sharepoint using powershell Difference between Angular 1.x & Angular 2 difference between Office 365 and Windows Azure difference between Windows Azure and Office 365 in sharepoint? DifferenceBetween discussion board Display Data in Grid View display radio buttons and choice fields horizontally in SharePoint 2013 Document library DotNet Drag and drop documents in document library in SharePoint dynamically populating values from one list to another list using jquery in sharepoint edit and delete buttons in datagridview Edit Links email notification using Nintex enable anonymous access in SharePoint 2013 enable app catalog sharepoint online site collection powershell Enable appcatalog site collection level using PowerShell based on Input file Enable versions for list and library except the hidden lists using PowerShell Script Error occurred in deployment step 'Recycle IIS Application Pool': Cannot resolve model for the project package Errors&Solutions Export document library in sharepoint using powershell Export particular Group in Term Store Management in SharePoint 2013 Export to Excel first release Flow Flow features free disk space on servers using powershell Friendly URLs and Managed Navigation in SharePoint 2013 get a list of site collection with template in web application using PowerShell Script in SharePoint Get attachments in SharePoint custom list using c# get current list item id sharepoint programmatically Get current url using jquery Get data from SharePoint list using Rest api & Angular JS Get Random Get Random SharePoint items using PowerShell Get Random values from SharePoint list using PowerShell Get url of the last value using jquery Get-SPOSite : The managed path sites/yoursitename is not a managed path in this tenant. Getting Email From User Hide “Edit Links” in left navigation SharePoint 2013 hide button in sharepoint based on permissions Hide column in SharePoint List view hide fields using client side object model Hide list in Quick Launch in SharePoint using PowerShell How to add Custom Tiles to SharePoint site Page. How to add extension files in Search Navigation in SharePoint 2013 How to Add Multiple users Using SharePoint People Picker How to add SharePoint list view in Page using C# How to Approve MasterPage using PowerShell in SharePoint How to bind Multiple users Using SharePoint People Picker how to change indicators on kpi performance how to check if an email address already exists in the database in asp.net how to configure workflow manager platform for SharePoint 2013 how to create calculated value using powershell how to create certificate in SharePoint How to create flow. how to create gantt chart webpart in sharepoint how to create KPI indicators in Dashboard designer How to create moden communication site in SharePoint online How to create Multi selected filter in Dashboard How to create nintex workflow in sharepoint how to create rdlc reports in asp.net How to Display Data Grid View in ASP.net How to enable anonymous access in SharePoint How to find data in datagridview in c# How to get image names from the folder using C# how to get particular list content type id in SharePoint 2013 How to get QueryString value in SharePoint WebPart Programatically how to get the current item id for newly created item using REST API and JQuery how to hide list in sharepoint how to know who created list in sharepoint How to make a Site Collection Read-Only in SharePoint 2010 How to overlay Office 365 shared calendar on SharePoint Site how to pass jquery value to asp.net textbox control How to pass pagename as a browser's title bar in the page how to remove unused Application Pool in SharePoint how to remove zone using powershell script How to send mail to particular group of people using PowerShell how to update modified by and created by using powershell how to uplaod RAR files in blogger import csv data into sharepoint import data using powershell Import group to term store management using SharePoint 2013. InfoPath InfoPath Cascading Dropdown list Insert update delete in datagridview in C# winforms Integration from SharePoint to k2. K2 Smart Forms for SharePoint JavaScript Injection jquery JSON K2 blackpearl K2 Designer K2 Designer Workflow. K2 smartform cascading dropdown list k2 Workflow K2 workflow to send a mail with PDF left navigation Local Term Set in managed meta data Managed meta data navigation in SharePoint 2013 Managed metadata service in SharePoint 2013. Managed Navigation in SharePoint 2013. Managed Promoted Sites. meta data navigation Microsoft Flow New Features New-SPConfigurationDatabase The user does not exist or is not unique NintexWorkFlow Office 365 OneDrive OneNote overwrite existing document in sharepoint using javascript PDF Converter PDF Method in K2 Performance Point Service in SharePoint 2013 PerformancePoint Services Configurtion PerformancePoint Services Configurtion for SharePoint 2013 PerformancePoint Services in SharePoint Server 2013 Popularity trends in SharePoint 2013 Pages populate dropdown list dynamicallyusing jquery Power Power Automate Power Shell Power shell script to get SharePoint site size. PowerApps powershell read xml PowerShell Script PowerShell script to get list of users from SharePoint groups PowerShell Scripts in SharePoint 2013 Powershell to set the masterpage in SharePoint Promoted Links Promoted Sites psconfig.exe quick launch Rdlc reports Readonly Column in SharePoint Editview Realtime DotNet Interview Questions Recent Dotnet interview questions Recent SharePoint interview questions recover deleted OneNote page. OneNote content is missing Regional Settings in SharePoint 2013 Replace New Item text in SharePoint Rest API Schedule PowerShell Script Search in SharePoint 2013 Search navigation in SharePoint 2013 Secure store service SecureStore Services SecureStore Services configuration for SharePoint 2013 self-signed certificate on IIS Server Send email to members of SharePoint Group using PowerShell sharepint2010 sharepoin2010 SharePoint 2013 SharePoint 2010 SharePoint 2013 SharePoint 2013 Dashboard Designer SharePoint 2013 features SharePoint 2013 Interview Questions SharePoint 2013. SharePoint 2013.disable views from user to create SharePoint 2013.Power shell SharePoint 2013.SharePoint 2010 SharePoint 2016 SharePoint Administration SharePoint Alerts and Reminders SharePoint App Configuration SharePoint Apps SharePoint Bulk upload SharePoint Calculated field SharePoint Calendar View sharepoint interview questions SharePoint online interview questions SharePoint online training SharePoint Onprem vs Online SharePoint RealTime Online Training SharePoint2010 SharePoint2013 SharePoint2016 SharePointInterview SharePointOnline SharePointOnline;Restore deleted site;SharePoint 2013 show data in datagridview in C# Simple Insert update Delete Retrieve Clear in asp.net. Site Collection Operations in SharePoint 2013 Site Collection Read-Only in SharePoint 2013 site contents Sorting & Filtering SPO SPSite Site Collection Operation parameters in SharePoint 2013 Step by step to create rdlc report in .Net Store names in text files in C# Sub site Subsite Term store management. The server was unable to save the form at this time. please try again UI New look update created by using client side object model update field values in SharePoint using powershell update items in SharePoint list using client object model update modified by field using client side object model upload zip files in blog use IsNullOrEmpty in PowerShell VirtoSoftware VirtoSofware vitrosoftware WebParts what is Document Set in SharePoint 2010 What is Filter in SharePoint Dashboard what is Limited-access user permission lock down mode feature What is Modern Team site What is Target Audience in SharePoint Who Created Site Using PowerShell Workflow in SharePoint 2013 Workflow management platform in SharePoint 2013 Workflow manager for SharePoint 2013 XSL-Template.