How to update files of Azure hosted site
Post Views: 42 There are few steps need to follow to edit and update files of application which are hosted in azure. Follow following steps. Login to azure portal, Click…
Create Angular Component if more than one module matches
Post Views: 152 More than one module matches. Use skip-import option to skip importing the component into the closest module. Command ng g component –skipTests /admin/home –module=app This command will…
Failed to register URL “http://localhost:XXXX/” for site “..” application “/”. Error description: The process cannot access the file because it is being used by another process. (0x80070020)
Post Views: 458 Error: Failed to register URL “http://localhost:XXXX/” for site “SITE NAME” application “/”. Error description: The process cannot access the file because it is being used by another…
How to Create a List in SharePoint
Post Views: 53 Introduction In this article, we will learn how to create SharePoint List in SharePoint site. Additionally, we will add necessary columns and set property of columns. List…
Create a Database View using Entity Framework (EF) Code First Approach
Post Views: 701 How to create a database view using Entity Framework Code first approach? User case scenario: There are several cases when your applications may need to display data…
Web Deployment from Visual Studio
Post Views: 27 Today, we will learn few steps to deploy website from visual studio. Step 1: Download the web deployment package from control panel of your hosting site. Step…
How to Create SQL Server Database Project With Visual Studio
Post Views: 8,511 In this article, we are going to learn about SQL Server Database Project (Template) available in Visual Studio. I will cover the following points, Introduction of SQL…
SharePoint Error: Updates are currently disallowed on GET requests. To allow updates on a GET, set the ‘AllowUnsafeUpdates’ property on SPWeb.
Post Views: 66 This error occurs while clicking General setting of Web Application in SharePoint Central Administrator. SharePoint Central Administrator >> Manage Web Applications >> Select Web Application (From List)…
Loading Pane Display in Web Application
Post Views: 27 Write the following style in your css file. [code] .page-loader { position: fixed; width: 100%; height: 100%; top: 0px; right: 0px; …
How to create Angular 6 and Asp.net Core 2.0 App in Visual Studio
Post Views: 38 This article describes how to start the angular 6 with Asp.net core in Visual Studio. Here are some steps that will guide beginners to start a project…