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 asp.net with mvc? : Asp.Net MVC
What are the new features added from ASP to ASP.NET?
What is the basic difference between asp and asp.net?
What is owin authentication?
Explain how cookies work.
Explain login control and form authentication.
is gateway for sms continue connected for sending sms.how?
What would be salary for 8+ years of experience in ASP.NET in different metro city in india?
What is master page in dtp?
In which event of page cycle is the viewstate available?
What is the difference between session object and application object?
How you can manage the state of application at the server side in ASP.NET?
Elaborate differentiation between ViewState and SessionState?
How asp.net mvc differs from asp.net web forms? : asp.net mvc
Which of the following .NET framework supports Web API?