Console.WriteLine()、Console.Write()是输出到屏幕的,一般用在控制台程序中。
Console.WriteLine()输出的是一行,会自动换行,而Console.Write()不会自动换行。
Response.Write()是输出到网页的,一般用在WebSite或者WebApplaction中,输出的不是一行,不会自动换行。
如果Response.Write()要实现换行,可以用
Response.Write(\"</br>\");
Console.WriteLine()、Console.Write()是输出到屏幕的,一般用在控制台程序中。
Console.WriteLine()输出的是一行,会自动换行,而Console.Write()不会自动换行。
Response.Write()是输出到网页的,一般用在WebSite或者WebApplaction中,输出的不是一行,不会自动换行。
如果Response.Write()要实现换行,可以用
Response.Write(\"</br>\");