Hello, I am sending data from a sensor to a website through the URL.
I want to transfer this data to a SQL database so I can display it in an ASP.NET application I made.
Can anyone tell me how to transfer this data from url to database?
Hello, I am sending data from a sensor to a website through the URL.
I want to transfer this data to a SQL database so I can display it in an ASP.NET application I made.
Can anyone tell me how to transfer this data from url to database?
You are heading in the right direction. You can create an Asp.Net MVC or WebApi application, in both you will have an action that will receive the request and write to the database. I recommend using a POST request because there is a limit (+ - 2000 characters) in the size of the GET request.