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
How many types of sessions in asp.net?
What is a postback in asp net?
How will you maintain versioning in asp.net 2.0?
How many web.config files can I have in an application?
Is asp.net and .net same?
What is client side state management?
What are directives in asp.net?
Define web services in asp.net.
Using code explain Configuration Management
What is the usage of DelegatingHandler?
Explain the different parts that constitute ASP.NET application?
What is ashx file in asp.net?
Why we use content place holder in asp.net?
What is asp net_sessionid?
Why do we need a web application session?