Is there a console log for asp.net?

For Server Side

C# & VB.Net
Server Side – This will show in the Visual Studio Output window.

System.Diagnostics.Debug.WriteLine(log data here)

Client Side JavaScript/Jquery – This will show in the browser devtools console window. Works on all popular browsers.

console.log(log data here) 

Leave a Comment