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 are the advantages of asp.net mvc framework? : asp.net mvc
Differentiate globalization and localization.
Define machine.config in .net?
What is difference between session and cookies?
How can you display all validation messages in one control?
What is the usie of activex control in .net?
How do u optimize a query in asp.net?
Where is asp.net view state stored?
What is the difference between asp.net and mvc?
Why mvc is faster than asp.net? : Asp.Net MVC
Describe briefly what is the role of IIS on an ASP.NET application? What does it for the same application?
Explain the advantages of asp.net.
Explain how cookies work.
Why do you use the app_code folder in asp.net?
Give me one example of Web API Routing?