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
How do you create a master page?
What are the steps involved to fill a dataset?
What is the difference between executescalar and executenonquery?
hi .net gurus. plz if any one has dumps on 70-631 and 70-541 on windows sharepoint services kindly mail me.
How you can access the values from the Repeater control in ASP.NET?
Explain different types of validators in asp.net?
Where web.config file is used?
What is AutoPostback?
How do you change the session time-out value?
Are xaml file compiled or built on runtime?
What is the difference between page directive include and action tag include?
Whta are the Various steps taken to optimize a web based application (caching, stored procedure etc.) ?
What parameters can you pass in the url of the api? Can get and post use the same url?
Describe session handling in a webfarm, how does it work and what are the limits?
How to Separate background image and front image from original picture....