How to pass Model property from ActionLink to Post method (with asp.net core)?
I’ve been recreating my project in asp.net core mvc from asp.net mvc.
I’ve been recreating my project in asp.net core mvc from asp.net mvc.
I have a problem with area
Problem: My jobs doesn’t work same times. Allways work only one. What is wrong in code.
public class Project { public int Id { get; set; } public string Name { get; set; } public string Description { get; set; } } public class Step { public int Id { get; set; } public string Name { get; set; } } public class StepDate { public int StepId { get; set; … Read more
I have this weird situation where an uploaded image file disappears only when using Chrome.
I have an app in which I post some JSON data to my server and then create an object that will later be added to a database.This is done by the “Save” method in my “SendItemsController”:
I’m trying to remove or hide items from a list and I’m facing two problems, 1- the newly cannot be removed, 2- Tried to tag the deleted items as isDeleted = true using Javascript then later delete them in the controller following this answer https://stackoverflow.com/a/40572625/10773318 but it didn’t work.
After reading this article and this one can not handle Serve files in web root (.net core 3.1).
I’ve used Identity package in WebUI layer. I want to associate these users with the product that I keep in the entity layer.