In order to bind the data from a data source to the Repeater control what property is set and what method must you call in your code,?



In order to bind the data from a data source to the Repeater control what property is set and what m..

Answer / Tulsi Kumar Chaudhary

To bind data to the Repeater control in ASP.NET, you need to set the DataSource property of the repeater with your data and call the DataBind() method on the repeater:

```csharp
Repeater1.DataSource = myData; // myData is your collection of data.
Repeater1.DataBind();
```

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More ASP.NET Interview Questions

Which .NET framework supports Web API?

1 Answers  


What is inproc and outproc?

1 Answers  


Is it possible to apply themes to an asp.net application? If yes, then how?

1 Answers  


Explain how is the asp.net mvc architecture different from others? : asp.net mvc

1 Answers  


Do you know caching feature?

1 Answers  


Why is this service branded with windows livetm?

1 Answers  


What asp.net control can embed xaml into asp.net pages?

1 Answers  


how to retrieve data using web services in asp.net pls give me the code and explain me briefly

3 Answers  


How do you make your site SSL enabled ?

3 Answers   Satyam,


How we can bind textbox,listbox and datagrid to sql server database in asp.net using visualstudio.net language (vb.net)?

2 Answers   rocsearch,


What is role manager work in web.config? how to restrict perticular pages from the users using the role manager?

1 Answers   Patni,


what is silver light when will we use silver light,

1 Answers  


Categories