Hi
In ASP.net Core Razor pages like the one shown below where would I find the C# code in the click event when the "LOGIN" button is clicked?
using (Html.BeginForm("ActioName", "ControllerName", FormMethod.Post))
{
}
Then your code will be in respective controller, in your example it might be in AccountController check for post method and see
Try to find some code like this:
Open in new window
orOpen in new window
LoginHandler method in your controller can handle button click event on server