I'm from Java background, in Java program I can use System.out.println(message) to print a message to the output window, what's the equivalent in the C# .net Visual Studio ?
I know when I'm in debug mode I can use :
Debug.WriteLine("Debug : User_Id = "+Session["User_Id"]);
System.Diagnostics.Trace.WriteLine("Debug : User_Id = "+Session["User_Id"]);
to see the message in the output window, but how to do it without being in the debug mode ?
