Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

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


Please Help Members By Posting Answers For Below Questions

Why do we use sessions?

1058


I have created a configuration setting in my web.config and have kept it at the root level. How do I prevent it from being overridden by another web.config that appears lower in the hierarchy?

1065


Which class is used to send an email message from an ASP.NET Web page?

1069


What is the difference between viewstate and hidden field in asp.net?

1066


To redirect the user to another page which method do we use without performing a round trip to the client?

978


Explain the features that make asp.net more used framework? : asp.net mvc

988


How many validators do ASP.NET have?

1147


Where sessions are stored?

1138


Define web services in asp.net.

1118


where can i gather the materials for MCP certification

5392


Explain asp.net mvc request life cycle? : asp.net mvc

1160


Explain what is clr?

1091


What do you mean by marshalbyref?

1136


If you want to write your own dot net language, what steps you will you take care?

1156


What are the merits and demerits of viewstate?

1083