Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

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


Please Help Members By Posting Answers For Below Questions

What is asp.net master page?

1035


What is enableviewstatemac in asp net?

1099


What are server objects?

988


Define static member?

1039


Explain cookies with example.

1066


Explain how asp.net different from asp?

1153


What is the difference between stored procedure vs function?

1098


What is the biggest disadvantage of “Other Return Types” in Web API?

1461


Can one dll file contains the compiled code of more than one .net language?

1054


Which data type does the rangevalidator control support?

1003


Can we set which type of comparison we want to perform by the CompareValidator control?

1092


What is application in asp net?

976


Name the method that needs to be invoked on the dataadapter control to fill the generated dataset with data?

1035


What are user controls?

1058


What methods are fired during the page load? Init()

1020