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

How do you create a master page?

753


What are the steps involved to fill a dataset?

750


What is the difference between executescalar and executenonquery?

701


hi .net gurus. plz if any one has dumps on 70-631 and 70-541 on windows sharepoint services kindly mail me.

1438


How you can access the values from the Repeater control in ASP.NET?

768






Explain different types of validators in asp.net?

704


Where web.config file is used?

742


What is AutoPostback?

780


How do you change the session time-out value?

762


Are xaml file compiled or built on runtime?

716


What is the difference between page directive include and action tag include?

697


Whta are the Various steps taken to optimize a web based application (caching, stored procedure etc.) ?

760


What parameters can you pass in the url of the api? Can get and post use the same url?

723


Describe session handling in a webfarm, how does it work and what are the limits?

792


How to Separate background image and front image from original picture....

732