Is there a console log for asp.net? -
if have if statement below:
if currentdate >= rating1 status = 2 elseif currentdate >= rating2 daylight_savings_status = 0 elseif currentdate >= rating3 daylight_savings_status = 1 else daylight_savings_status = 1 end if
is there in javascript
console.log('test');
that can test on if statement truth of statement?
this way able test on firebug(firefox).
for server side
c# & vb.net server side - show in visual studio output window.
system.diagnostics.debug.writeline(log data here)
client side javascript/jquery - show in browser devtools console window. works on popular browsers.
console.log(log data here)