How do you bind array to gridview? Will it works?
Answers were Sorted based on User's Feedback
int[] arr = { 1, 2, 3, 4, 5, 6, 7, 8 };
GridView1.DataSource = arr;
GridView1.DataBind();
try this.
| Is This Answer Correct ? | 24 Yes | 5 No |
Answer / 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 |
Answer / mallu
Dim i As Integer
Dim fib(10) As Integer
fib(0) = 1
fib(1) = 1
For i = 2 To 10
fib(i) = fib(i - 1) + fib(i - 2)
Next
Me.grdResults.DataSource = fib
Me.grdResults.DataBind()
| Is This Answer Correct ? | 5 Yes | 7 No |
Answer / alpesh
get the values in to the array
now pull that array values in one Dataset haveing same
array structure
now assign that dataset to the grid view
thats it
| Is This Answer Correct ? | 7 Yes | 10 No |
Can u able to get the xml document in crystal report if yes how its possible
What is the importence of the INTERFACE? but not the inheritence concept?and why we r declaring the empty methods in that? we can directly implements with in the class know? Tell me the importence?
What is server side routing?
In a webservice, need to display 10 rows from a table. Which is the best choice among datareader or dataset?
What are the advantages of the code-behind feature?
How to include silver light .xap page into asp.net web application and what is the purpose of using silverlight application?
Where you store Connection string in "Web.Config" file in ASP.NET?
0 Answers Sans Pareil IT Services,
What is the main difference between grid layout and flow layout?
How do you declare static variable?
What is runat?
What are url fragments?
What is Web Gardening? How would using it affect a design ?
Visual Basic (800)
C Sharp (3816)
ASP.NET (3180)
VB.NET (461)
COM+ (79)
ADO.NET (717)
IIS (369)
MTS (11)
Crystal Reports (81)
BizTalk (89)
Dot Net (2435)
Exchange Server (362)
SharePoint (720)
WCF (340)
MS Office Microsoft (6963)
LINQ Language-Integrated Query (317)
WPF (371)
TypeScript (144)
Microsoft Related AllOther (311)