how can log in result in blazor sever side console.write in server side blazor dont work
<button @onclick=@(()=> Console.WriteLine("show log") )>show2
@code{
public void show() => Console.Write("show log2");
}
CodePudding user response:
You can see the log in Output
window which is from ASP.NET Core Web Server:
Note:
To open the Output
window, on the menu bar, choose View > Output, or press Ctrl Alt O.