Problem receiving data in date format from the REST API [closed] - c#

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 days ago.
Improve this question
I wrote a website in React and .NET Core. And I have a problem when sending data of date type to server side and returning data from the server.
I get back to the client side the two hours ahead of the correct date
CONTROLLER DB I see that the time and date are stamped yes at the correct time
I will mention that I use MESSAGE-PACK
I would appreciate a solution.

Related

How to reset hard application on Azure [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 3 days ago.
Improve this question
I have web app on Azure.
Suppose my application has entered a method that performs something. I can't get out of it.
When I close the web app on azura and turn it on, the app returns to the same point (method).
Can I somehow reset it and stop the execution of all methods?
Best regards

Send request to plugin and get result in C# [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 11 months ago.
Improve this question
I have software that takes your request, And I want to control requests with the plugins.
Fore example console writes: Enter Request: and i write time
well, Now I want the software to check if any plugin supports this command and then turn back the time and more (day, mouth, list of plugins, ...).
I looked at other sources but could not implement the project.
I hope someone can help me. :) Thanks.
I think you can adapt this MS tutorial and get what you want.
https://docs.miosoft.com/en-us/dotnet/core/tutorials/creating-app-with-plugin-support
It shows how to load pluggins and execute. From what you are describing this is what you are looking.

Saving a URL address NETCore [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 2 years ago.
Improve this question
How can I save the website someone is accessing using NET?
The company that I work have multiple landing pages, I need to check wich one the user is accessing after he accept or not the cookie policy and save it on a postgres database.
Right now I'm using this to get the user IP and it is working fine.
historicoCookie.EnderecoIp = this.HttpContext.Connection.RemoteIpAddress.ToString();
Is there anything like that to get the URl the user is accessig?
You should be able to get it from the Request object
var requestUrl = Microsoft.AspNetCore.Http.Extensions.UriHelper.GetDisplayUrl(this.Request);

How to store user information in token in .net core? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 2 years ago.
Improve this question
I have to store token in cache that comes from rest api for about 1 hour of time. I am new to this so don't know much about same, Please help me to guide.
u can use jwt token or cache helper for same.

How to implement a payment gateway in ASP.NET [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 2 years ago.
The community reviewed whether to reopen this question 1 year ago and left it closed:
Original close reason(s) were not resolved
Improve this question
I need to know how to implement a payment gateway in ASP.NET for my billing based project.
Is there one gateway enough to access all the bank account?
I would look at some open source solutions that do the same thing. Nopcommerce comes to mind and implements the APIs for a large number of payment providers. Download the code and get digging....

Categories