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 |
Explain the difference between overriding and overloading?
What is difference cookie and session?
What is the namespace used to store the information about the user?s locale?
What is asp.net file?
In order to bind the data from a data source to the Repeater control what property is set and what method must you call in your code,?
What is bson in web api?
What is the use of HttpHandlers? When to use this?
Why session is used in asp.net?
What are the type of session in Asp.Net
What is a uri query?
Define static member?
Where session id is stored?