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 purpose of using MVC programming pattern in ASP.NET?
Explain the Order of events in an asp.net page?
What is windows active directory authentication?
Explain difference betn dataset and recordset?
What is the application pool?
How many types of controls are there in asp.net?
What is round trip in asp.net?
What is difference between cookies and cache?
What symbol would you use to denote, the start of a code block in aspx views?
How do I open an ashx file?
How to use push notification?
Explain what is event bubbling?
What does uri mean?
Explain about Application and Session Events ?
What is the benefit of WebAPI over WCF?