6299 1
How to customize/configure cutom Login UI for Identity Server 4 based on their Quickstart Repo

How to change the default Login UI template of Identity Server 4 based on my preferences?.

What steps should I do to implement my desired design with Identity Server 4.

Any links that tells how to customize/cofigure the template will help.

I am having a hard time to implement my design onto it. I am thinking to create angular 2+ login page with restful services on identity server 4 but it was not recommended because of security purposes.

...
Type
Question
6298 1
How can I set JSON Serializer in ASP.NET Core (.NET 5)?

Hello, I am trying to work on JSON in ASP.NET Core MVC (using .NET 5.0 version), but I am not able to set JSON Serializer settings using it, I tried to use below code

...
Type
Question
6282 0
Model Validation in ASP.NET Core MVC (With Custom validation example)
In this article, I have explained about what is Model Validation and Model binding in ASP.NET Core MVC and how to validate form using Model validation in ASP.NET Core MVC.
Type
Article
6273 2
How to update remote branches using Visual Studio Git?

Recently, I have pushed my code from local git to azure-devops, but after pushing code and clicking on "Fetch" doesn't update my local branches, it should have two branches dev & master but showing only one.

So, How can I update branches locally to show dev and master in my Visual Studio 2017 Git?

...
Type
Question
6121 1
Updating / editing foreign key of a Child table in Entity Framework Core 1.1

ENTITY FRAMEWORK CORE 1.1

I just want to demonstrate my question, here it is.

I have two class. Let's say.

Class Owner has these properties:

...
Type
Question

5999 2
How to show only a single record with crystal report in ASP.NET MVC

I want to show only a single record from an employeeList by ID with crystal report in asp.net MVC. But I don't know how to do it. I can show a whole list. But I can't do it for a single ID. Please help.

...
Type
Question
5939 0
Code First Migration with Entity framework
The article gives introduction and description of using code first migrations with Entity framework using ASP.NET MVC C#
Type
Article
5877 0
Return JSONResult in ASP.NET Core MVC
In this article, I have provided working example to return json or you can say jsonresult in asp.net core MVC with status code.
Type
Article
5874 0
Implementing Payment Gateway in C# (ASP.NET Core MVC Razorpay Example)
In this article, I have provided working example to integrate payment gateway in C# using ASP.NET Core MVC web-application as an example.
Type
Article
5851 2
How to save Product Order details with User Id?

I have a user table & I want whenever a user orders a product, its order should be saved in order table with user primary key, so what relationship I have to add in user and order table. please let me know

Suppose, this is my ActionMethod

public ActionResult Create( Student student)
{

if (ModelState.IsValid)
{
db.Students.Add(student);
db.SaveChanges();
return RedirectToAction("Index");
}

return View(student);
}

 Database Relationship image

 ...

Type
Question

Page 18 of 31