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 do you bind array to gridview? Will it works?

Answer Posted / uma

all the answers are correct, but its not write way to store
array to grid,if u insert data into grid view as the above
mension answers expect first one answer, the data will be
diaplayed in column wise, actually the data in grid view is
displayed in rowwise, so we convert array data into a
spesfic datasource like lists,generic list etc;


int32[] arr=new int32[10];
arr[1]=2;
arr[2]=3;

list<> lt=new list<arr>
lt.add(arr[1]);
lt.add(arr[2]);
GridView1.DataSource = lt;
GridView1.DataBind();

Is This Answer Correct ?    9 Yes 10 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is a postback in asp net?

1155


Define tracing.

1171


Why do we need Sessions?

1100


What is the difference between response.redirect and server.transfer?

1096


What are the security types in ASP/ASP.NET? Different Authentication modes?

1105


What are the new web part controls in asp.net 2.0 ?

1107


How do you do Client-side validation in .Net?

1135


What is difference between web api and web services?

1056


In a webservice, need to display 10 rows from a table. Which is the best choice among datareader or dataset?

1270


How information about the user's locale can be accessed?

1107


How many types of cache are there?

1047


List down the sequence of methods called during the page load.

980


What is use of Master Page in ASP.NET web pages?

1099


Will session work if cookies is disabled?

1060


What is work flow gen? how can it will work with .Net?

3102