Suppose, there is a website or a web-application which is running on your localhost. But,now you want to check some scenerio that how your website will work in live environment but you don't even want…
I got this issue after hosting my umbraco website on GoDaddy server. Solution<configuration> <system.web> <trust level="Full" /> </system.web></configuration>This will fix your issue.…
you can determine type of exception in c# in two ways.Way 1catch (Exception ex) { if (ex is System.ServiceModel.FaultException) { // do something } else if (ex is…
Use below script to update schema of a table in SQL Server. ALTER SCHEMA NewSchema TRANSFER CurrentSchema.TableName; i.e. Suppose you want to change your dbo.Customers table to Config.customers, then…
This error normally occurs when you are using Post Build event to move your .PDB & .DLL files from you current project's bin directory to some other project's bin directory. And when you run the…
What is ESLint?ESLint has been already been integrated in Visual Studio 2017 by Microsoft. You can enable or disable it as per your project requirement.How to enable or disable it in Visual Studio…
SOAP is just a Communication or Messaging Protocol not a technology.SOAP defines a set of rules which we must follow while creating messages for communication.SOAP uses XML based formats for sending &…
What is a Socket?Socket is endpoint with IP Address & port number. ex. 192.22.56.345:3000. Here 192.22.56.345 is IP Address & 3000 is port number. If real world example, this socket will get created…
Angular CLI stands for Angular Command Line Interface. It is simply a node package that is available in Node Package Manager (NPM), where NPM is a library that contains or hosts thousands of Node…
To check which version of TypeScript is your Visual Studio using, there are 3 ways.First, you can open Visual Studio and then go to Help menu. UnderHelp menu, click on About Microsoft Visual Studio -…