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 are asp.net web forms?
Explain authorization levels in .net ?
What is mvc in asp.net tutorial? : Asp.Net MVC
What is the difference between localization and globalization?
What types of data validation events are commonly seen in the client-side form validation?
What is protected configuration?
Which library is used by the testers and developers to develop automated tests and create testing tools?
What are ASHX files?
Explain the procedure to handle the process request using mhpm events fired? : asp.net mvc
What is the biggest disadvantage of “Other Return Types” in Web API?
What is the difference between viewstate and hidden field in asp.net?
Explain why it is useful to use mvc instead of webforms? : asp.net mvc
Is asp.net 64-bit enabled? How?
Which method is used to force all the validation controls to run?
What is query string? What are its advantages and limitations?