忍者ブログ

プログラミングの練習

プログラミングの問題やプログラミング関連知識、ソフトウェアのテストについてのブログです

.NET Core ASP.NET Core Web Helloworldを直してみる

1.Startup.cs の修正



public void Configure

を、以下のように修正します

 endpoints.MapGet("/", async context =>
 {
      // await context.Response.WriteAsync("Hello World!");
      context.Response.ContentType = "text/html" ;
      await context.Response.WriteAsync("<html><body><h1>hello!</h1></body></html>") ;
                    
 });

2.実行すると


h1で

hello!

が表示されます


PR