Today, we are going to create a new project in Angular, which will be called the Library Management System. As you all know, a Library Management System has several key functionalities. The library contains books, each of which h...
Friday, November 29, 2024
Friday, September 7, 2018
How to use Tabs in ASP.NET CORE
I want to show Components in a tabs , so first of all create few components. In this project we have three components,
First View Component
public class AllViewComponent : ViewComponent
{
private readonly UserMa...
Sunday, August 12, 2018
Add control dynamically in ASP.NET CORE also save value into Database
public class PersonViewModel
{
public string Name { get; set; }
public string FatherName { get; set; }
}
public class PeopleViewModel
{
public List<PersonViewModel> People { get; set...
Thursday, June 28, 2018
Highlight Table Row based on some Condition in ASP.NET Core
Model Class
public class Products
{
public int Id { get; set; }
public string Name { get; set; }
public int Price { get; set; }
}
Controller Code
public IActionResult Index()
{
...
Sunday, January 7, 2018
Dynamically Add or remove control in asp.net core using JavaScript
If you want to add some controls on your web browser, i mean to say if you want to add controls on run time then you can easily dome with any script control, without using c# code. So, here i used Java Script code to add controls...
How to Customize ViewImport.cshtml in ASP.NET CORE
Required to add or remove information of Tag Helper. I mean to say that If you want to use Tag helper into your application then must to use ViewImports.cshtml file.
...