是否有asp.net的控制台日志?

前端之家收集整理的这篇文章主要介绍了是否有asp.net的控制台日志?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如果我有如下IF语句:
If currentdate >= rating1  then
    status = 2
ELSEIF currentdate >= rating2  then
    daylight_savings_status = 0
ELSEIF currentdate >= rating3  then
    daylight_savings_status = 1
ELSE 
    daylight_savings_status = 1
End If

是否有类似javascript的东西

的console.log( ‘试验’);

我可以测试哪个IF语句是声明的真实性?

这样我就能在firebug(firefox)上测试它.

解决方法

对于服务器端

C#& VB.Net
服务器端 – 这将显示在Visual Studio输出窗口中.

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

客户端JavaScript / Jquery – 这将在浏览器devtools控制台窗口中显示.适用于所有流行的浏览器.

console.log(log data here)
原文链接:https://www.f2er.com/aspnet/248010.html

猜你在找的asp.Net相关文章