Creating a Project with Visual Studio:

* Added HTML structure, and it's the simplist form of web app
vscode/2_Getting_Started
jason.zhu 2021-04-21 16:46:19 +10:00
parent cb8cb6662e
commit 808cad1082
1 changed files with 1 additions and 1 deletions

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>");
});
}
}