WebAssembly 0

WebAssembly Tutorial for Beginners

What is WebAssembly? WebAssembly is a new computer programming language for the web. WebAssembly code is a low level binary format, that is compatible with the web and can easily run in modern web...

Terraform Modules with Examples 0

Terraform Modules with Examples

A module is a container for multiple resources that are used together. Every Terraform configuration has at least one module, known as its root module, which consists of the resources defined in the .tf files in the main working...

Introduction to Terraform 0

Introduction to Terraform

What is Terraform? Terraform is a tool for building, changing, and versioning infrastructure safely and efficiently. Terraform can manage existing and popular service providers as well as custom in-house solutions. Configuration files describe to...

AWS Lambda Function 0

AWS Lambda Function Examples in C#

In this article I would like to explain about AWS Lambda. AWS Lambda is one of the main compute service of AWS. First I will explain what is AWS Lambda function later will give...

Microservices in .NET with Examples 0

Microservices in .NET with Examples

In this article I would like to explain about Microservices in .NET with examples. A software architecture defines and structures a solution in a way that it meets all the technical, operational and business...

AngularJS Interview Questions and Answers 0

Top 23 AngularJS Interview Questions and Answers

In this article I will provide collection of frequently asked AngularJS Interview Questions and Answers. Sometimes the interviewer trying to confuse you by asking questions indirectly, so I would like to give you the...

Bootstrap 4 CSS Components 0

Bootstrap 4 CSS Components

In this article I would like to explain about CSS Components used in Bootstrap 4. Forms & Input GroupsTablesList GroupsCardsProgress BarsAlertsNavbar & MenusButtons & Button GroupsPaginationMedia ObjectsJumbotronBadges

7 Most useful Bootstrap 4 Utilities 0

7 Most useful Bootstrap 4 Utilities

In this article I will explain the 7 most useful Bootstrap 4 utilities. These are very important when you are working with bootstrap, as if you don’t understand these classes functionality clearly then it...

Bootstrap 4 0

Bootstrap 4 Introduction And Features

Bootstrap 4 is the newest version of Bootstrap, which is the most popular HTML, CSS, and JavaScript framework for developing responsive, mobile-first websites. Bootstrap 4 is completely free to download and use! What is Bootstrap? Open source front-end...

Multithreading in C# 0

Multithreading in C# with Examples

What is Multithreading in C#? Multithreading in C# will get rid of the difficulties faced in sequential processing. In this article I will explain all the multithreading concepts which will also cover multithreading in...

fibonacci series 1

Generate Fibonacci Series for the First 1000 Values

What is the fibonacci sequence The Fibonacci sequence is a series of numbers where the next number is the sum of previous two numbers. Fibonacci sequence formula : fn = f(n-1)+f(n-2) The first two...

ASP.NET MVC Page Life Cycle 2

ASP.NET MVC Page Life Cycle

Below diagram explains how MVC works and MVC control flow with ASP.NET MVC page life cycle.     1. Routing in ASP.NET MVC Page Life Cycle Routing is the first step in ASP.NET MVC page...

MVC Filters 1

Understanding ASP.NET MVC Filters

ASP.NET MVC Filters are used to execute logic either before an action method is called or after an action method runs. ASP.NET MVC Filters are custom classes that provide both a declarative and programmatic...

C# Logical Questions for Interviews 0

C# Logical Questions for Interviews

Below are the list of most frequently asked C# logical questions for clearing technical interviews. Swap two number without using temp variable     private void SwapTwoNumbersWithoutTemp()        {      ...

MVC Interview Questions 2

MVC Interview Questions and Answers

In this article I would like to explain about most frequently asked ASP.NET MVC Interview Questions. This collection is useful for both freshers and experienced candidates to clear technical ASP.NET MVC interviews. 1. What...

MVC Layouts 0

ASP.NET MVC Layouts

What are Layouts in ASP.NET MVC? ASP.NET MVC Layouts are used to maintain a consistent look and feel across multiple views within ASP.NET MVC application. As compared to Web Forms, layouts serve the same...

String Functions in SQL with Examples 0

String Functions in SQL with Examples

In this article I would like to explain about String Functions in SQL with examples.   SQL Server String functions are used to manipulate string data types. SQL Server has many built-in string functions....

1

Sql Server Date Functions

Sql Server have many build in functions in which Sql Server Date Functions plays a major role when you working with dates. These are very useful if you want to display the dates in...

.NET Framework 4.7 Features 0

.NET Framework 4.7 Features

The .NET Framework 4.7 come up with the following: Visual Studio 2017 CLR4.0 The .NET Framework 4.7 includes new features in the following areas: Windows Forms High DPI support: It improves the layout and...

Authentication and Authorization in ASP.NET 1

Authentication and Authorization in ASP.NET

Authentication and Authorization plays important role in ASP.NET. In this article I will explain about Authentication and Authorization and about Authentication types. Impersonation When client sends a request to server, it will provide identity...

Simple Dynamic HTML tables with example 0

Simple Dynamic HTML tables with example

In this article I will show how generate dynamic HTML tables by using JavaScript and CSS. Please find the below code to generate dynamic tables using HTML and JavaScript. CSS Code to design table...

Delegate with example 0

Delegate with example

A delegate is a type-safe object that can point to another method (or possibly multiple methods) in the application, which can be invoked at later time.Delegates also can invoke methods Asynchronously.A delegate type maintains...

Factory Design Pattern 0

Factory Design Pattern in C# with Example

In this article I would like to explain about Factory Design Pattern in C# with example.  What is Factory Design Pattern? Factory Design Pattern definition according GOF, “Define an interface for creating an object,...

WPF Interview Questions 0

TOP 37 WPF Interview Questions and Answers

In this article I would like to provide collection of frequently asked WPF Interview Questions and Answers. This collection of WPF Interview Questions will be helpful for freshers as well as experienced candidates to...

C# Design Patterns with Examples 1

C# Design Patterns with Examples

In this artcle I will give the glimpse of overview on C# Design Patterns with Examples. Design Patterns simplifies software programs by providing standardized and efficient solutions.  According to MSDN, “A design pattern is...

List to CSV in C# 0

List to CSV in C#

public class ListToCSV {        private void btnStart_Click(object sender, EventArgs e)        { bool isHeaderRow = true; string outputCSV = CreateCSVTextFile(objList, entityType, “,”, isHeaderRow); //To append new records to existing...

Optional Input Parameters in Stored Procedure 0

Optional Input Parameters in Stored Procedure

CREATE PROCEDURE GetEmployeeDetails @EmpId INT, @EmpName VARCHAR(20) AS BEGIN         SELECT * FROM Employees         WHERE ((EmpId IS NOT NULL OR EmpId <> 0 AND EmpId = @EmpId) OR...

C# Interview Questions Part 1 1

C# Interview Questions Part 1

1. Can we override the properties and apply polymorphism on these? Yes, You can. Public Class Stud Public Property P() As String Get End Get Set(ByVal Value As String) End Set End Property End...

SQL Server Temp Tables 0

SQL Server Temp Tables

What are Temp Tables in SQL Server? SQL Server temp tables are very similar to the permanent tables. Permanent tables get created in the database you specify, and remain in the database permanently, until...

State Management Techniques in ASP.NET 0

State Management Techniques in ASP.NET

This article discusses various options for state management for web applications developed using ASP.NET. Generally, web applications are based on stateless HTTP protocol which does not retain any information about user requests. In typical...

Routing in MVC 1

Routing in MVC

In this article I would like to explain about the routing in MVC. You will learn the following things What is routing in MVC How routing works What is route table Properties of Route...

Difference between Abstraction and Encapsulation 0

Difference between Abstraction and Encapsulation

Before we know about the difference between abstraction and encapsulation first we know about what is abstraction and what is encapsulation in object oriented programming. What is Abstraction? Abstraction is one of the key...

COALESCE in Sql Server 0

COALESCE in Sql Server

COALESCE in Sql Server DECLARE @listStr VARCHAR(MAX) SELECT @listStr = COALESCE(@listStr+’,’ ,”) + CAST(PartnerId AS VARCHAR(50)) FROM Partners SELECT @listStr GO O/P: 1,2,3,4,5,6,….100.

ASP.NET MVC Tutorial Step By Step For Beginners With Examples 0

ASP.NET MVC Tutorial Step By Step For Beginners With Examples

What is ASP.NET MVC? ASP.NET MVC is an open source web development framework from Microsoft that provides a Model View Controller architecture. ASP.NET MVC is a server-side web framework for building dynamic, data-driven web applications. Since...

SQL Server Ranking Functions 0

SQL Server Ranking Functions

In this article I would like to explain about SQL Server ranking functions. These are very useful when you are working with more numbers of rows and wants to sort out some of the...

WCF 0

WCF

1. What is WCF? WCF stands for Windows Communication Foundation and is part of .NET3.0. WCF is Microsoft platform for building distributed and interoperable applications. 2. What is distributed application? In simple terms a...