Check out the latest ASP.NET Tutorial Articles

A Preposition Configurable ASP.NET C# Title Case Method

This configurable title case method allows you to add the prepositions you wish to include as lowercase while skipping the first word of the sentence.

C# Programming ASP.NET Version: 6.0 Tutorial Articles

How to Search for an Item in an ASP.NET C# ArrayList

Searching for an item in a C# ArrayList is fairly simple. The only thing you need to do is loop through the ArrayList and once you find the item that is in the collection, you break out of the loop.

C# Programming ASP.NET Version: 6.0 Tutorial Articles

Get the Index of an Array in a C# For Loop

This example shows how to get the index of an array in a C# for loop. I am using an ArrayList class to add objects to an array. You can add, remove, or search for array elements using an ArrayList.

C# Programming ASP.NET Version: 6.0 Tutorial Articles

Creating a Syllable Counter Algorithm using ASP.NET C#

Creating a Syllable Counter Algorithm using ASP.NET C#. The syllable counter algorithm kicks in if words and their syllable counts are not found in the dictionary. 

C# Programming Tutorial Articles

Remove Hashtag from a URL: A User-Friendly ASP.NET MVC Solution

This article provides a brief explanation and example of how to remove a hashtag (#) from a URL while creating a user-friendly one without the hashtag.

C# Programming ASP.NET Version: 6.0 Tutorial Articles

Redirect All Non-WWW Requests to WWW in ASP.NET Core 6 MVC

Redirect to WWW in ASP.NET Core 6 MVC. This article will show you how to redirect all non-www requests to www in ASP.NET Core 6 MVC.

ASP.NET Core ASP.NET Version: 6.0 Tutorial Articles

Output Caching in ASP.NET Core 6 MVC

How to perform output caching when it is not available in ASP.NET Core 6. There is a middleware workaround so that you can use output caching in your ASP.NET Core 6.0 MVC web applications.

ASP.NET Core ASP.NET Version: 6.0 Tutorial Articles

Using SQL Server Stored Procedures and ASP.NET Core 6 MVC

ASP.NET Core and MVC provide an easy way to use store procedures. Here is one straightforward way. Create a LINQ Query based on an interpolated string representing the stored procedure query.

Microsoft SQL Server ASP.NET Version: 6.0 Tutorial Articles

Automatic Model Binding in Razor Pages Using ASP.NET Core MVC

How can we do the automatic model binding in Razor pages? When the value of an Input Tag Helper's 'for' attribute matches the name of the property in the associated model, binding automatically occurs. Razor Pages and Tag Helpers are very powerful. 

Razor ASP.NET Version: 6.0 Tutorial Articles

How to Create a Responsive Full-Width iframe with a Fixed Aspect Ratio

It is easy to create a responsive iframe with 100% width that maintains its aspect ratio while you resize the browser using this code.

HTML Tutorial Articles

What is CSS isolation in ASP.NET Core 6.0 (With Tutorial)?

Here is an explanation of CSS Isolation in ASP.NET Core 6.0. Using CSS isolation keeps global stylesheets from becoming monolithic while it minimizes the CSS footprint. It can be used in Razor and Blazor pages.

CSS ASP.NET Version: 6.0 Tutorial Articles

Implement reCAPTCHA in ASP.NET Core MVC and Razor Pages

This tutorial will show you have to implement reCAPTCHA in ASP.NET Core MVC and Razor pages. Google reCAPTCHA is a free service that protects your website from abuse by creating challenges.

MVC ASP.NET Version: 6.0 Tutorial Articles

Tutorial: Create a Microsoft SQL Server Database and Connect it to an ASP.NET Core MVC Project

This tutorial will show you how to create a Microsoft SQL Server database and incorporate it into an ASP.NET Core MVC project. This tutorial will show you how to access the database file created by Visual Studio and Entity Framework and replace it with a database you create and manage.

Microsoft SQL Server ASP.NET Version: 6.0 Tutorial Articles

Tutorial: Create an ASP.NET Core MVC Website with Login and a Custom SQL Server Database

This tutorial will show you how to create an ASP.NET Core MVC Website with a Custom SQL Server Database in about 10 minutes. This ASP.NET Core MVC website-building tutorial will be used as a starting point for many of the tutorials on LearnASPNET.com.

MVC ASP.NET Version: 6.0 Tutorial Articles

ASP.NET Core MVC Image Upload (File Upload) Tutorial

This simple tutorial will show you how to build a file or image upload interface using ASP.NET Core 6 MVC. The files will be uploaded to a folder that is unique to the user.

MVC ASP.NET Version: 6.0 Tutorial Articles