Tag: .Net

There are some benefits of keeping both UI and API parts in the same place for small projects. In this article, I will explain how I did to deploy Angular Web and ASP .Net Core API in the same folder ...

Below is how to decrypt/convert a Hex string value into text using VB.Net:Decrypting Hex string value to string in VB.Net Function HexToString(ByVal hex As String) As String Dim text As New Sy ...

.Net Core is getting more and more popular recently due to the flexibility to work and be hosted in different environments like Windows, Mac, or Linux. In this article, we will learn how to build a .N ...

Accelerated Mobile Pages (AMP) focuses on delivering static content from publishers as quickly as possible and possibly rewards early adopters with a boost in rank. Let's see how to implement it ...

The last design pattern in the Behavioral Category, and also the last design pattern in this series, is the Visitor Design Pattern. Let's take a look at the definition of this pattern and see how to i ...

The next design pattern in Behavioral Category is the Observer Design Pattern. Let's take a look at what does this design pattern do and how to implement it in C# and .Net.Note: Code can be downloaded ...

The next design pattern in the Behavioral Category is the Memento Design Pattern. Let's take a look at the definition of this design pattern and how to implement it in C# and .Net.Note: Code can be do ...

The next design pattern in the Behavioral Category is the Command Design Pattern. Let's take a look at this design pattern and see when and how to implement this in C# and .Net.Note: Code can be downl ...

In the previous tutorial, we have talked about how to create jQuery Autocomplete in .Net Core MVC project. In this post, we will try to do it with AngularJS in regular .Net Framework MVC project.Note: ...

It would be so nice to have an input that when you type in, the suggestion panel show up for you to select. Autocomplete field is much better than a regular textbox field as well as a select drop down ...