Hi,
this is what i found can be used in
vb.net
Request("w" & num)
C#...
string str;
for(int i=1;i<5;i++)
{
str="t"+i.ToString();
txt=(TextBox)Page.FindControl(str);
Response.Write(txt.Text);
str="w"+i.ToString();
txt=(TextBox)Page.FindControl(str);
Response.Write(txt.Text);
}
yeah i just used response.write to explain the question...
but what would request(
VB.NET) equivalent in C#