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 difference between session and cookies in asp net?
What is caching? Explain.
What r the asp.net list controls and diff. Between them?
is there any third party tools are using in .net technologies? what are there ? give me the brief introduction?
Define web services in asp.net.
What is asp.net version?
What are the different web pages?
What are the HTML server controls in ASP.NET?
Can the validation occurs in server-side or client-side? If the validation occurs why should we do?
How we implement the multiple paypal value with gridview in my website and how we make a payment through Credit Card.
Can I recieve both html markup for page and code in the asp.net web page's source code portion in the web browser?
What is master page in dtp?
What is mvc in asp.net tutorial? : Asp.Net MVC
What is the procedure to handle the process request using mhpm events fired? : asp.net mvc
Distinguish between Server-side and Client-side code?