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
What’s the difference between response .redirect and server.transfer?
Diff between web user control and web custom control?
Can asp.net work on an nt server?
What is server infrastructure & server components?
Where session variables are stored?
What parameters can you pass in the url of the api?
Can we set master page as a start page?
Explain Life cycle of ASP.NET page when a request is made.
What are the various types of cookies in asp.net?
What are client activated objects?
Explain difference between dataset and recordset?
What is the purpose of url encoding?
What is the importance of aspnet_isapi.dll, inetinfo.exe andaspnet_wp.exe in the page loading process.
Explain the difference between globalization and localization techniques
How to count the number of objects present in a web page? How to count the number of radio buttons in a web page?