How do you bind array to gridview? Will it works?
Answer Posted / 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 |
Post New Answer View All Answers
What is asp.net master page?
What is enableviewstatemac in asp net?
What are server objects?
Define static member?
Explain cookies with example.
Explain how asp.net different from asp?
What is the difference between stored procedure vs function?
What is the biggest disadvantage of “Other Return Types” in Web API?
Can one dll file contains the compiled code of more than one .net language?
Which data type does the rangevalidator control support?
Can we set which type of comparison we want to perform by the CompareValidator control?
What is application in asp net?
Name the method that needs to be invoked on the dataadapter control to fill the generated dataset with data?
What are user controls?
What methods are fired during the page load? Init()