how to store values in string array
is my syntax below is correct
{
// Put user code to initialize the page here
i=10;
strarr="firstvalue;
}
i=20;
strarr="secondvalue";
i=30;
strarr="thirdvalue";
i=40;
strarr="fourth value";
Response.Write(str+"<br>");
so finally my code should display
firstvalue
secondvalue
thirdvalue
fourthvalue