Lets say I have an ASP.NET Web API which displays data result on the web browser, eg. {"Result": 10}
when I run the application.
Is it possible for the result to be shown in a text file when I run the application?
Meaning when I run the application, a text file is created with the data {"Result": 10}
in it. Or, the data is shown in the web browser and also a text file is created with the same data in it. Is that possible?