how can i insert array values and retreive in asp.net
Answers were Sorted based on User's Feedback
Answer / 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 |
Which tab of the web site administration tool do you use to manage application setting ,debug and tracing?
If you are using components in your application, how can you handle exceptions raised in a component?
What is state management in .net?
How to transpose rows into columns and columns into rows in a multi-dimensional array ?
What are Master Pages in ASP.NET?
What is another word for redirect?
How do you declare delegates and are delegates and events one and the same and explain how do you declare delegates and invoke them ?
difference between gridview,data list and repeater control
Which is the parent class of the ASP.NET server control?
0 Answers Sans Pareil IT Services,
what is Impersonation
3 Answers Alliance One, Task Informatics,
State differences between MVC and WebAPI
code for "For every 5days system has to create 1text file with the corresponding date and it has to store in c-drive" by using web applications