Rupali Shinde, C# Corner

Rupali Shinde

C# Corner

Contact Rupali

Discover and connect with journalists and influencers around the world, save time on email research, monitor the news, and more.

Start free trial

Recent:
  • Unknown
Past:
  • C# Corner

Past articles by Rupali:

Real Life Example Of SharePoint 2013 InfoPath With Repeating Table

Suppose we are planning to have Product selling site where single user can sell multiple products. In this case we need user entry form which contains users personal information along with list of products which he/she wants to sell. Step 1: Create InfoPath Form Open InfoPath Designer. In this example we are going to create InfoPath for SharePoint Form Library. Step 2: ADD New Field’s InfoPath… → Read More

SharePoint 2013: Frequently Asked Comparison Interview Questions

The Oslo handles anonymous users differently. The top ribbon is completely removed for anonymous users. tag play important role in hiding content on page. → Read More

Steps To Copy SharePoint Designer Workflow From One Site Collection To Another Site Collection

Save Workflow as Template Step1: Create new reusable workflow using SPD 2013. Step 2: Save and Publish it. Step 3: Now save workflow as template using SPD 2013. Popup information Step 4: Go to Site assets library under site content section, you will see our custom workflow as in the following, Step 5: Download copy of workflow from site assets library as shown below. Template get saved in as… → Read More

SharePoint Hosted App Using REST API From Client Side Script

Here are the steps: Step 2: App Web List Creation Steps. Firstly add simple list into SHA project. Here are the steps to create List into SHA project. In this example I created custom list named “Customers” as in the following, Elements.xml File code- it adds data into List. Step 3: User Interface designing steps. Home page of application is having “Add New Customer “ button, which shows user… → Read More

App Web Tile Navigator For SharePoint Hosted App Using Office 365

Please refer the following link to create SharePoint hosted app with Office 365 account. What is App Web App web is an isolated domain but it is still inside the same site collection as host web. SharePoint components get deployed to this special website. It prevent cross site scripting attacks. We need to set app level permission when app wants to communicate with SharePoint Environment using… → Read More

SharePoint Hosted App Data Manipulation With Office 365 Using Custom JavaScript Library

Previously, we discussed about part 1 of the series. Here are the steps for part 2 of the series, In order to continue further I will add new files into project solution as in the following screenshot, Source Code: To generate user interface we need html controls on page. Please refer the following code in order to create above user interface. Step 2: Read List Data using custom JavaScript… → Read More

SharePoint Hosted App Data Manipulation With Office 365 Using Custom JavaScript Library

Here are the steps, Step 1: Create SharePoint Hosted App with Office 365 account credentials. Open Visual Studio and select New Project as in the following, Step 2: Specify Site URL & app type to proceed next. Step 3: Provide Office365 credentials to continue further. Step 4: Project structure is as in the following, Step 5: We first need to set permission for App, so that we can communicate… → Read More

Powershell Command Using CMAL Query To Fetch Data From List In SharePoint 2013

I am working as Associate Software Developer in IT Company at Pune. i am become a Microsoft Certified Professional & Professionally SharePoint Developer. I have knowledge of ASP.NET, C#, HTML, AJAX, ADO.NET, Linq, SQL S... Read more → Read More

DotNetNuke Custom Module Creation Using DNNTemplate

In this article, we are going to learn how to create DotNetNuke Custom module using DNNTemplate. DNN Custom Module Folder Structure with usage details. → Read More

Add Custom Taxonomy Term To Site Pages In SharePoint 2013

I am working as Associate Software Developer in IT Company at Pune. i am become a Microsoft Certified Professional & Professionally SharePoint Developer. I have knowledge of ASP.NET, C#, HTML, AJAX, ADO.NET, Linq, SQL S... Read more → Read More

MVC Application With MongoDB

Please reference below link to understand how to connect to MongoDB server & create Database for our MVC application. Please keep MongoDB server in running state while running MVC application. Part-1 section include steps to start MongoDB server. Both command prompt need to be running ( mongod & mongo ). Step 1: Create a new database. Firstly create MongoClient object. In this example we have… → Read More

MVC Application With MongoDB

Step 1: Let’s start with MongoDB server installation for our application. In this application I am using MongoDB 3.0.4 server. The following image indicate the installation of server. Setup files downloaded from MongoDB official website. Step 2: Now it’s time to check server has installed properly or not on machine. So go to location ‘C:\Program Files\MongoDB\Server\3.0\bin’. After successful installation of server bin folder contains the following mentioned files. → Read More

Provider Hosted MVC App With AngularJS In SharePoint

This article is continuation of Part-1 & Part-2. Let's start with Provider Hosted MVC App with AngularJS - Part 3. In this part we are going to create dynamic TileView using CSS and AngularJS. SharePoint HostWeb List Structure The following is a list structure which we are referencing for our application. Figure 1: App We are going to create the following UI Design and final output format. UI… → Read More

Call HTTP Web Service Using SharePoint Designer 2013 (SPD)

* Add a Get an Item from a Dictionary action, set the item as d/results, the source variable reponseContentand the output to a new variable of type Dictionary called List. * Then count items from this list variable using a Count Items in Dictionary action and store the result in a new Integer variable called TotalListItem. This variable will tell us how many times we have to loop. * Finally,… → Read More

CAML Query List Join Operation With SharePoint App Model

I am working as Associate Software Developer in IT Company at Pune. i am become a Microsoft Certified Professional & Professionally SharePoint Developer. I have knowledge of ASP.NET, C#, HTML, AJAX, ADO.NET, Linq, SQL S... Read more → Read More

Navigation From One Page to Another In AngularJS Page Routing

Landing Page In this example, we are having the following three hyperlinks available at the top of the page: Home, About & Contact. By default Home.html is landing page as per our code. When we click About hyperlink, it navigates to the About.html page. When we click Contact hyperlink, it navigates to the Contact.html page. Index.html As per our html design shown below, each hyperlink point to… → Read More

Taxonomy Term Data Binding With Dropdown List In SharePoint App Model

Term Store Manangement How to access SharePoint Site Term Store Management? Go to SharePoint Site, then Site Settings and select Term Store Management. Term Store Management Concept SharePoint APP Model Step 1: Add Permission in AppManifest.xml file to read Taxonomy as follows. Step 2: User Interface Design Page. Taxonomy.aspx → Read More

SharePoint Workflow: Create A SubFolder In Site Collection Documents Or Shared Document

* ServiceURL - SharePoint List URL where we defined Sub Folder Names. * RequestHeader - HTTP Header for web service call. * LinkToDoc - SharePoint Link where our Sub Folder gets added/saved. Step 5: Web Service Call. * In order to create a sub folder, we first need to fetch List data containing folder names using the following URL… → Read More

Provider Hosted MVC App With AngularJS in SharePoint

Let's start with Provider Hosted MVC App with AngularJS - Part 2. In this part we are going to perform CRUD operation's with SharePoint APP Model and AngularJS. Please Reference below link to understand how to create Provider Hosted MVC App With AngularJS. Step 2: Steps to apply AngularJS validation attributes and showing the error message Add html control with unique name. If the form field is… → Read More

SharePoint 2013 Design Manager

Design Manager Design Manager is the new feature introduce by SharePoint 2013. Now using this we can create faster master page & with little headache. Design manager convert Html into Master page, then apply this master page to Pages or System Pages. HTML to Master Page conversion Step 1: Select Site Setting, then Design Manager. Step 2: Design Manager, then Upload Design Files. Step 3: Open the… → Read More