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
How long does an http session last?
What are the three parts of an http response?
1.what is the application pool. 2.what is the HttpModile and Http Handler. 3.C# 3.0 Features ? 4.Anonoymous Type,methopd and claas in 3.0? 5.difference between statsic and const ? 6.session vs application 7.state management clint side and server side ? 8.Genric list 9.c# 3.0 vs 3.5
How to implement Authentication and Authorization?
how to retrieve property settings from xml .config file.
Explain the Order of events in an asp.net page?
What is the latest version of asp.net?
Why asp.net mvc is better than asp.net? : Asp.Net MVC
Where would you use an ihttpmodule, and what are the limitations if any?
Explain http handlers? Where we can use the http handlers?
Why does my asp.net file have multiple tag with runat=server?
What are tuples?
How does http session work?
Tell me the code snippet to show how we can return 404 errors from HttpError?
How does session state work in asp.net?