Creating a Project with Visual Studio:

* Added HTML structure, and it's the simplist form of web app
This commit is contained in:
jason.zhu 2021-04-21 16:46:19 +10:00
parent cb8cb6662e
commit 808cad1082

View File

@ -23,7 +23,7 @@ namespace DutchTreat
{
app.Run(async context =>
{
await context.Response.WriteAsync("Hello World!");
await context.Response.WriteAsync("<html><body><h1>Hello World!</h1></body><html>");
});
}
}