This has probably a simple solution, but i cannot find any obvious wrong.
This is a simple button event and the supposed output in Label5 should be: One Two Three.
Now, I can only get "Three", the last value in the array.
protected void Button4_Click(object sender, EventArgs e)
{
string[] stringArray = { "One", "Two", "Three" };
foreach (string element in stringArray)
{
Label5.Text = (element + " ");
}
}