In my pervious article I shown you Bind Webgrid (GridView) with Entity Framework, Asp.net Core MVC, C#, SQL, Open Form MDI Parent Using C#.Net and VB.Net | Open Only One Form in MDI in C#, How to Generate SQL Server Database Scripts Automatically?.
Some of my previous articles are Access Value from appsettings.json File in Class File Using C#.Net, Access SMTP Detail from appsettings.json in Class Library Using C#.Net, Asp.Net Core MVC: Entity Framework, Asp.Net Core MVC: Update Entity Framework for SQL Server, How to Enable/Disable Email or SMS Communication in Asp.net Core MVC.
So, for this article first we will create a new asp.net core 10 mvc application and create an httpget type method. in this methos we will pass a value parameter named as "value" of string type.
[HttpGet]
public IActionResult Capturevalue(string value)
{
return View();
}
Now we will run the code to check the output. For this we will use the below link.

