Article

Network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections.

In this article we will see how to fix this problem network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. Network-related or instance-specific error occurred while establishing a connection to SQL…

Continue Reading

Article

Use null and not null operator in FetchXML

In this blog we will learn How to Use null and not null operator in FetchXML? First learn about What is a NULL Value? A field with a NULL value is a field with no value. If a field in a table is optional, it is possible to insert a new record or update a record without adding a value…

Continue Reading

Article

C# and VB.net Interview Programs

In this article we will learn about some of the frequently asked C# and VB.Net Interview Programs in technical interviews. Let’s see the list of top C# programs generally asked in every interview. 1. Fibonacci Series in C# Fibonacci series means, next number is the sum of previous two numbers for example 0, 1, 1, 2, 3, 5, 8, 13,…

Continue Reading

Article

Fibonacci Series in VB.Net

Fibonacci Series in VB.Net Fibonacci series means, next number is the sum of previous two numbers for example 0, 1, 1, 2, 3, 5, 8, 13, 21, 34 etc. The first two numbers of Fibonacci series are 0 and 1. Like 0+1=1, 1+1=2, 1+2=3 Here you can see next number is sum of previous two number. Code for Fibonacci Series…

Continue Reading

Article

Fibonacci Series in C#

Fibonacci Series in C# Fibonacci series means, next number is the sum of previous two numbers for example 0, 1, 1, 2, 3, 5, 8, 13, 21, 34 etc. The first two numbers of Fibonacci series are 0 and 1. Like 0+1=1, 1+1=2, 1+2=3 Here you can see next number is sum of previous two number. Code for Fibonacci Series…

Continue Reading

Article

Detect which mouse button clicked using JavaScript

In this article we will learn how to Detect which mouse button clicked using JavaScript. JavaScript Event Object event here is used for which properties of the event object are used to determine which mouse button is clicked by you. Internet Explorer 8 and previous version use event.button property For Left Button : 1 For Middle Button : 4 For…

Continue Reading

Article

PAN Number validation using jQuery

Here Laxmikant has explained with an example, PAN Number validation using jQuery. The PAN Number entered in the input html TextBox will be validated on Button click using Regular Expression (Regex) in jQuery. In this blog I will explain with an example, how to implement Indian PAN Number validation using jQuery. The PAN Card Number entered in the given TextBox…

Continue Reading

Article

Country State dropdownlist in Asp.Net

Here Laxmikant has explained with an example, how to build Country State DropDownList in ASP.Net i.e. Country State Cascading DropDownList populated from Database and dependent on each other. In this article, we will learn Country State Dropdownlist in Asp.Net. Here I have taken two dropdown list one for Country and another for State. Here we will see How to select…

Continue Reading

Article

How To Create React Element

In this Article, we will learn about How To Create React Element? How to render Elements? Elements are the basically smallest building blocks of React apps. An element generally specifies what should be shown in our UI. In this article we will learn How To Create React Element by using JSX. First we will learn about How to create React…

Continue Reading