Web server for my .NET Micro device

I want to have a web server as an interface for users to configure my device. The device is recorded in the .NET Micro Framework.

I can write my own web server in C # that serves static pages, it is not difficult. But I'm looking for a web server that supports some types of server technologies, such as ASP.NET or PHP, so from there I could ruin my hardware settings. Is there a commercial offer or free?

Thanks.

+3
source share
1 answer

You can use the HttpServer class inside the .NET MF Toolkit at http://www.mftoolkit.net/ .

+3

Source: https://habr.com/ru/post/1714470/


All Articles