What property must you set, and what method must you call in
your code, in order to bind the data from some data source
to the Repeater control?
Answer Posted / ish
SqlConnection cn=new SqlConnection(ConnectionString);
SqlCommand cmd=new SqlCommand(cn,Query);
cn.Open();
SqlDataReader Reader=cmd.ExecuteReader();
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
If iam developing an application that must accomodate multiple security levels though secure login and my asp.net web appplication is spanned across three web-servers (using round-robbin load balancing) what would be the best approach to maintain login-in state for the users?
What is the difference between page.registerclientscriptblock and page.registerstartupscript?
Explain serialization and deserialization?
How to implement form based authentication in asp.net application?
How to display Alert in ASP.NET
Can we set master page as a start page?
Define data caching?
How may clustered index we can create in table?
How to prevent client side validation from the ASP.NET validation controls?
Explain how do you deploy your asp.net application?
What is the difference between mvc and asp.net? : Asp.Net MVC
State differences between MVC and WebAPI
What is the difference between asp.net and mvc?
In the Repeater control which way you can edit?
what are the Custom controls in asp.net?