我想知道如何从我的 asp.net mvc 4 控制器向 Internet Explorer 调试控制台写入调试消息。我在下面做了,但它不起作用。当我在默认网站上发布我的应用程序并启动它时,不会向 Internet Explorer 控制台打印任何消息。
try
{
}
catch (Exception ex)
{
Console.WriteLine("Exception raised from the controller: " + ex.Message);
}
有任何想法吗?