how can i insert array values and retreive in asp.net
Answer Posted / senthil
Insert value into array
-----------------------
int[] a = new int[10];
for(int i=0;i<10;i++)
a[i] = i;
Retreive value from array
--------------------------
for (int i = 0; i < a.Length; i++)
Response.Write(a[i].ToString());
| Is This Answer Correct ? | 7 Yes | 6 No |
Post New Answer View All Answers
What is the request flow used for asp.net mvc framework? : asp.net mvc
How do http sessions work?
What can you do with asp.net?
Which .NET framework supports Web API?
Explain About duration in caching technique
Should I delete cookies?
Differentiate globalization and localization.
Can I tap into other windows livetm services?
What is server components?
What is ispostback method in asp.net?
Explain the path instructions in xaml?
Explain the asp.net mvc folder conventions? : asp.net mvc
If Instancing = Single use for ActiveX Exe, how will this be executed if there are 2 consecutive client requests ?
How can we inherit a static member?
Explain one critical mapping?