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 does the hotspot class in .net do?
What is cookies in asp net?
List down the sequence of methods called during the page load.
Mention the execution process for managed code?
What is the default Orientation property in a Menu control?
Explain the Order of events in an asp.net page?
What are server side controls?
How does cookies work in asp net?
What is Forms Authentication in ASP.NET?
Why is string called immutable data type?
What is Cookies Less Session?
Explain about secure socket layer?
Explain the path instructions in xaml?
Is asp.net outdated?
what are the web form events available in asp.net?