Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ASP.NET を使い始めたばかりで、ループからの結果の表示に問題があります。例えば:
int x = 0; while (x < 10) { Label1.Text = x+""; // This will show only result 9 ( last result ). x++; }
1 つだけではなく、すべての結果を表示するにはどうすればよいですか?