How to get FULL URL in ASP.NET Core Razor Pages?
I want to get the full URL, not just the Path, not just the Query, and not RouteValues. The entire URL as it has come in the raw form. How can I do that in ASP.NET Core Razor Pages?
I want to get the full URL, not just the Path, not just the Query, and not RouteValues. The entire URL as it has come in the raw form. How can I do that in ASP.NET Core Razor Pages?
I need to read a value from HTTP response. Here is an example of the response in which I'm trying to fetch (description) value: { "result":{ "code":"200.300.404", "description":"successful" }, "buildNumber":"1f9@2021-12-23 09:56:49 +0000", "timestamp":"2021-12-25 17:22:35+0000", "ndc":"8976eaedf8da" } Here is my code…
I am making an AJAX POST request to the controller (ASP.NET Core MVC), yet the value for the parameter is coming through as null. I tried several solutions given on StackOverflow. But, I couldn't correct it. Please help. My view…
In Asp.net Core 5, my area is the same solution in a different project. I import the dlls with the application part, but. When I go to the index page in the area, it cannot find the view. It falls…
I started learning ASP.NET Core 6.0 a week ago. I've made a real-time chat with SignalR, I'm also saving the messages to my database. As for now, it's just a table, each row contains in separate columns the username, message,…
This is my first question here at stackoverflow. Hehehe. I have an edit page which I need to display all the existing fields and I have an add button which I can add a new field. Here is the source…
Today in interview I got asked this kind of question. Let's say you want to update multiple records same time using web api then how you can do that. As it is around 1000s of records for updating.. So I…
I have a problem when I trying to add Identity Scaffold. Here are photo of adding Identity Scaffold: All pages of Identity Scaffold are loaded in Account. If I remove pages of Identity Scaffold, the web service will be working.…
I am new to Docker and I have a question for it. I have a docker container including my ASP.NET Core API project. I would like to change some files in this project and then update it. But I don't…
Hi I wanna use a modal popup for Create User view in Asp Net Core 5 (mvc). I wanna use this modal as a ViewComponent In User Index view (which shows the list of users). I added a button that…