teratail header banner
teratail header banner
質問するログイン新規登録

質問編集履歴

2

初心者アイコンをつけました

2021/07/08 08:32

投稿

Mk-ky
Mk-ky

スコア19

title CHANGED
File without changes
body CHANGED
@@ -18,7 +18,7 @@
18
18
  using System.Collections.Generic;
19
19
  using System.Diagnostics;
20
20
  using System.Linq;
21
- using System.Threading.Tasks;
21
+ using System.Threading.Tasks; 
22
22
  using プロジェクト.Models;
23
23
  using Microsoft.AspNetCore.Authorization;
24
24
 

1

startup.csでLoginメソッドではなくIndexメソッドがアクションに設定されていたので修正しました 正しくはLoginメソッドです。

2021/07/08 08:32

投稿

Mk-ky
Mk-ky

スコア19

title CHANGED
File without changes
body CHANGED
@@ -137,7 +137,7 @@
137
137
  endpoints.MapRazorPages();
138
138
  endpoints.MapControllerRoute(
139
139
  name: "default",
140
- pattern: "{controller=Home}/{action=Index}/{id?}");
140
+ pattern: "{controller=Home}/{action=Login}/{id?}");
141
141
  });
142
142
  }
143
143
  }