blah blah blah is here! blah blah » Close

1
votes
9 answers

ASP.NET Message Box, Replace "Message from webpage" to some other string

in ASP.NET, say we have some code something like this: protected void RasinBread_Button_Click(object sender, EventArgs e) { if (GlobalClass.RemainingStock() == 3) { Response.Write(&q ...

0
votes
1 answers

can't fingure this simple loop out in c#

string[] origArray = new string[] { "b", "c", "d" , "e"}; for(int i = 0; i< origArray.Length; i++) { lblOrig.Text = origArray[i] ; rt ...

Feedback