热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

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

IfIhaveIFstatementlikebelow:如果我有如下IF语句:Ifcurrentdate>rating1thenstatus2EL

If I have IF statement like below:

如果我有如下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

Is there something like in Javascript

是否有类似Javascript的东西

console.log('test');

that I can test on the which IF statement is truth of the statement?

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

This way I be able to test it on the firebug(firefox).

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

1 个解决方案

#1


20  

For Server Side

对于服务器端

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

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

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.

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

console.log(log data here) 

推荐阅读
author-avatar
散場偂爱的擁菢_257
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有