I've had success filling text into labels, but I would like to also write some text that isn't placed into a label. Can this be done? I found system.console.Write, and I tried the following:
float T001 = 0;System.Console.Write("Value T001 = ");
System.
Console.WriteLine(T001);
The above didn't generate any errors, but it didn't send text to the page either. Did I miss something? Am I headed in the wrong direction?
P.S. - I found another example on the internet without the word System, so I tried taking it off -- again, no errors, but it didn't print the text (will keep trying... : - )
Thank you,
-Larry
Start with something simple that works.