How to get the number of rows affected in SQL Server (Transact-SQL)?
You can retrieve the no of affected rows using the system variable - ‘@@ROWCOUNT’
You can retrieve the no of affected rows using the system variable - ‘@@ROWCOUNT’
Error: Cannot Start Application Pool. There was an error while performing this operation.
Cannot read property ‘push’ of undefined? let fareConfigList: FareConfig[]; Solution: Initialize the array with ‘[]’ let fareConfigList: FareConfig[] = [];
What is the use of an immediate window? It is used to debug and evaluate expressions, execute statements, and print variable values.
Below code, snippets help you to find the anchor element using its text in XPath and the sample code to use it in the selenium.
Add the Nodejs path in your environment variables.
ASP.NET Core Creating a new ASP.NET Core Web Application on choosing an empty template will leave you with the empty configuration in the startup class fi...
If you are getting the below error when try to use the Task<>, The type or namespace name ‘Task<>’ could not be found (are you missing a using di...
You have to send the header to accept the content type.
You can disable the SSL or HTTPS in Visual Studio 2019 for your local project execution. Below are the steps,
If you’re getting this error “URL must be a valid top-level domain” in the Adsense account while adding a new site like, http://www.sample.com Screenshot ...
The issue fix is pretty straightforward. The problem is with the ‘A record’ which you have added under the DNS Management in the control panel.
You can purchase a new domain from GoDaddy, BigRock, or any other domain provider and follow the below steps to configure the custom domain in the Blogger pl...
Visual studio 2019 professional or community edition is not showing the framework “.NET Core 3.1”?
You might be getting this error when trying to convert the Enumerable to List using ToList. It means the namespace to import the LINQ has been missed in your...
You will end up in the situation to delete one or more website instances hosted in the IIS server. I know it’s a frustrating task to delete the sites one by ...
This release switches you to the new Ivy compiler and run time by default. This is one of the biggest updates to Angular in the past 3 years. It’s recommende...
In Typescript, there is no built-in function to retrieve the unique items from Array. The below code is a custom function that uses contains (in typescript i...